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

pub trait IntoRouteMatcher {
    type Output: RouteMatcher;
    fn into_route_matcher(self) -> Self::Output;
}
Expand description

Allow various types to represent themselves as a RouteMatcher

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