(&self, other: &Self)
| 167 | |
| 168 | impl<'a> Ord for dyn AsKeyRef + 'a { |
| 169 | fn cmp(&self, other: &Self) -> Ordering { |
| 170 | self.as_keyref().cmp(&other.as_keyref()) |
| 171 | } |
| 172 | } |
| 173 | |
| 174 | /// Implement `Borrow<dyn AsKeyRef>` for `Key` to enable efficient lookups. |