Trait gotham::router::route::matcher::RouteMatcher[][src]

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