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.
pub trait RouteMatcher: RefUnwindSafe + Clone {
fn is_match(&self, state: &State) -> Result<(), RouteNonMatch>;
}Determines if conditions required for the associated Route to be invoked by the Router have
been met.