Trait gotham::router::builder::ExtendRouteMatcher[][src]

pub trait ExtendRouteMatcher<NRM> where
    NRM: RouteMatcher + Send + Sync + 'static, 
{ type Output: DefineSingleRoute; }

Describes the operation of extending a RouteMatcher on a route. This trait exists to remove type clutter from the documentation of SingleRouteBuilder::add_route_matcher.

Associated Types

type Output: DefineSingleRoute[src]

The type returned when extending the existing RouteMatcher with the target type.

Loading content...

Implementors

impl<'a, M, NRM, C, P, PE, QSE> ExtendRouteMatcher<NRM> for SingleRouteBuilder<'a, M, C, P, PE, QSE> where
    M: RouteMatcher + Send + Sync + 'static,
    NRM: RouteMatcher + Send + Sync + 'static,
    C: PipelineHandleChain<P> + Send + Sync + 'static,
    P: RefUnwindSafe + Send + Sync + 'static,
    PE: PathExtractor<Body> + Send + Sync + 'static,
    QSE: QueryStringExtractor<Body> + Send + Sync + 'static, 
[src]

type Output = SingleRouteBuilder<'a, AndRouteMatcher<M, NRM>, C, P, PE, QSE>

The type returned when extending the existing RouteMatcher with the target type.

Loading content...