[][src]Struct httptest::mappers::request::MethodPath

pub struct MethodPath<M, P> { /* fields omitted */ }

The MethodPath mapper returned by method_path()

Trait Implementations

impl<M: Debug, P: Debug> Debug for MethodPath<M, P>[src]

impl<M, P, B> Mapper<Request<B>> for MethodPath<M, P> where
    M: Mapper<str, Out = bool>,
    P: Mapper<str, Out = bool>, 
[src]

type Out = bool

The output type.

Auto Trait Implementations

impl<M, P> RefUnwindSafe for MethodPath<M, P> where
    M: RefUnwindSafe,
    P: RefUnwindSafe

impl<M, P> Send for MethodPath<M, P> where
    M: Send,
    P: Send

impl<M, P> Sync for MethodPath<M, P> where
    M: Sync,
    P: Sync

impl<M, P> Unpin for MethodPath<M, P> where
    M: Unpin,
    P: Unpin

impl<M, P> UnwindSafe for MethodPath<M, P> where
    M: UnwindSafe,
    P: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<IN, F> Mapper<IN> for F where
    F: Fn(&IN) -> bool + Send
[src]

type Out = bool

The output type.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.