1 2 3 4 5 6 7
use std::collections::HashMap; #[derive(Debug)] pub struct Route { pub name: String, pub parameters: HashMap<String, String>, }