(&self, other: &Self)
| 147 | /// Trait object implementations for `dyn AsKeyRef` to enable hashing and comparison. |
| 148 | impl<'a> PartialEq for dyn AsKeyRef + 'a { |
| 149 | fn eq(&self, other: &Self) -> bool { |
| 150 | self.as_keyref().eq(&other.as_keyref()) |
| 151 | } |
| 152 | } |
| 153 | |
| 154 | impl<'a> Eq for dyn AsKeyRef + 'a {} |