(&self, other: &Self)
| 36 | |
| 37 | impl Ord for KVPair { |
| 38 | fn cmp(&self, other: &Self) -> std::cmp::Ordering { |
| 39 | self.key |
| 40 | .cmp(&other.key) |
| 41 | .then_with(|| self.value.cmp(&other.value)) |
| 42 | } |
| 43 | } |
| 44 | |
| 45 | impl Display for KVPair { |
no outgoing calls
no test coverage detected