Struct httptest::matchers::JsonDecoded[][src]

pub struct JsonDecoded<T, M>(_, _);

The JsonDecoded mapper returned by json_decoded()

Trait Implementations

impl<T: Debug, M: Debug> Debug for JsonDecoded<T, M>[src]

impl<IN: ?Sized, T, M> Matcher<IN> for JsonDecoded<T, M> where
    IN: AsRef<[u8]>,
    M: Matcher<T>,
    T: DeserializeOwned + Debug + Send
[src]

Auto Trait Implementations

impl<T, M> RefUnwindSafe for JsonDecoded<T, M> where
    M: RefUnwindSafe,
    T: RefUnwindSafe

impl<T, M> Send for JsonDecoded<T, M> where
    M: Send,
    T: Send

impl<T, M> Sync for JsonDecoded<T, M> where
    M: Sync,
    T: Sync

impl<T, M> Unpin for JsonDecoded<T, M> where
    M: Unpin,
    T: Unpin

impl<T, M> UnwindSafe for JsonDecoded<T, M> where
    M: UnwindSafe,
    T: 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> Instrument for T[src]

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

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.