pub trait RouteMatcher: RefUnwindSafe + Clone {
    fn is_match(&self, state: &State) -> Result<(), RouteNonMatch>;
}
Expand description

Determines if conditions required for the associated Route to be invoked by the Router have been met.

Required Methods§

Determines if the Request meets pre-defined conditions.

Implementors§