(&self, other: &Self)
| 347 | |
| 348 | impl std::cmp::Ord for Topic { |
| 349 | fn cmp(&self, other: &Self) -> std::cmp::Ordering { |
| 350 | // FIXME |
| 351 | self.display_name(Locale::EN) |
| 352 | .cmp(&other.display_name(Locale::EN)) |
| 353 | } |
| 354 | } |
| 355 | |
| 356 | impl Topic { |
no test coverage detected