pub trait Router: Clone {
    fn handle(
        &self,
        req: Request,
        path: Option<String>,
        params: HashMap<String, String, RandomState>
    ) -> RouterResult; fn router_map(&self) -> Option<HashMap<String, Route, RandomState>> { ... } }

Required Methods

Provided Methods

Returns a tree of routes by filters

Implementors