(&self, other: &Self)
| 151 | |
| 152 | impl PartialOrd for Lint { |
| 153 | fn partial_cmp(&self, other: &Self) -> Option<std::cmp::Ordering> { |
| 154 | Some(self.cmp(other)) |
| 155 | } |
| 156 | } |
| 157 | impl Ord for Lint { |
| 158 | fn cmp(&self, other: &Self) -> std::cmp::Ordering { |
no test coverage detected