pub trait IntoRouteMatcher {
    type Output: RouteMatcher;

    fn into_route_matcher(self) -> Self::Output;
}
Expand description

Allow various types to represent themselves as a RouteMatcher

Required Associated Types§

The concrete RouteMatcher each implementation will provide.

Required Methods§

Transform into a RouteMatcher of the the associated type identified by Output.

Implementations on Foreign Types§

Implementors§