[][src]Struct ntex::service::dev::MapErr

pub struct MapErr<A, F, E> { /* fields omitted */ }

Service for the map_err combinator, changing the type of a service's error.

This is created by the ServiceExt::map_err method.

Trait Implementations

impl<A, F, E> Clone for MapErr<A, F, E> where
    F: Clone,
    A: Clone
[src]

impl<A, F, E> Service for MapErr<A, F, E> where
    F: Fn(<A as Service>::Error) -> E + Clone,
    A: Service
[src]

type Request = <A as Service>::Request

Requests handled by the service.

type Response = <A as Service>::Response

Responses given by the service.

type Error = E

Errors produced by the service.

type Future = MapErrFuture<A, F, E>

The future response value.

Auto Trait Implementations

impl<A, F, E> RefUnwindSafe for MapErr<A, F, E> where
    A: RefUnwindSafe,
    E: RefUnwindSafe,
    F: RefUnwindSafe
[src]

impl<A, F, E> Send for MapErr<A, F, E> where
    A: Send,
    E: Send,
    F: Send
[src]

impl<A, F, E> Sync for MapErr<A, F, E> where
    A: Sync,
    E: Sync,
    F: Sync
[src]

impl<A, F, E> Unpin for MapErr<A, F, E> where
    A: Unpin,
    E: Unpin,
    F: Unpin
[src]

impl<A, F, E> UnwindSafe for MapErr<A, F, E> where
    A: UnwindSafe,
    E: UnwindSafe,
    F: UnwindSafe
[src]

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> Instrument for T[src]

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

impl<T> IntoService<T> for T where
    T: Service
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,