(&self, other: &Self)
| 239 | |
| 240 | impl<Id: Clone + Eq + Ord> Ord for OrderingEntry<Id> { |
| 241 | fn cmp(&self, other: &Self) -> Ordering { |
| 242 | self.id.cmp(&other.id) |
| 243 | } |
| 244 | } |
| 245 | |
| 246 | impl<Id: Clone + Eq + Ord> PartialOrd for OrderingEntry<Id> { |
no outgoing calls
no test coverage detected