(&self, state: &mut H)
| 15 | |
| 16 | impl std::hash::Hash for Route { |
| 17 | fn hash<H: std::hash::Hasher>(&self, state: &mut H) { |
| 18 | self.name.hash(state); |
| 19 | self.route_type.hash(state); |
| 20 | // Skip hashing params as HashMap doesn't implement Hash |
| 21 | } |
| 22 | } |
| 23 | |
| 24 | impl Route { |
nothing calls this directly
no outgoing calls
no test coverage detected