Struct ferrum_router::router::RouterInner [] [src]

pub struct RouterInner {
    pub routers: HashMap<Method, Vec<Arc<Recognizer>>>,
    pub wildcard: Vec<Arc<Recognizer>>,
    pub route_ids: HashMap<Id, (String, Arc<Recognizer>)>,
}

Fields

The routers, specialized by method.

Routes that accept any method.

Used in URI generation.

Trait Implementations

impl Key for RouterInner
[src]

The value type associated with this key type.