Lines Matching defs:PartialEq
8 #[derive(Default, Clone, Eq, PartialEq, PartialOrd, Ord, Hash)]
114 impl PartialEq<str> for Id {
117 PartialEq::eq(self.as_str(), other)
120 impl PartialEq<Id> for str {
123 PartialEq::eq(self, other.as_str())
127 impl PartialEq<&'_ str> for Id {
130 PartialEq::eq(self.as_str(), *other)
133 impl PartialEq<Id> for &'_ str {
136 PartialEq::eq(*self, other.as_str())
140 impl PartialEq<Str> for Id {
143 PartialEq::eq(self.as_str(), other.as_str())
146 impl PartialEq<Id> for Str {
149 PartialEq::eq(self.as_str(), other.as_str())
153 impl PartialEq<std::string::String> for Id {
156 PartialEq::eq(self.as_str(), other.as_str())
159 impl PartialEq<Id> for std::string::String {
162 PartialEq::eq(other, self)