| 8 | |
| 9 | #[derive(Clone, Eq, PartialEq)] |
| 10 | pub struct Route { |
| 11 | name: String, |
| 12 | route_type: RouteType, |
| 13 | params: HashMap<String, String>, |
| 14 | } |
| 15 | |
| 16 | impl std::hash::Hash for Route { |
| 17 | fn hash<H: std::hash::Hasher>(&self, state: &mut H) { |
nothing calls this directly
no outgoing calls
no test coverage detected