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

pub struct MapServiceFactory<A, F, Res> { /* fields omitted */ }

MapNewService new service combinator

Trait Implementations

impl<A, F, Res> Clone for MapServiceFactory<A, F, Res> where
    F: Clone,
    A: Clone
[src]

impl<A, F, Res> ServiceFactory for MapServiceFactory<A, F, Res> where
    F: FnMut(<A as ServiceFactory>::Response) -> Res + Clone,
    A: ServiceFactory
[src]

type Request = <A as ServiceFactory>::Request

Requests handled by the service.

type Response = Res

Responses given by the service

type Error = <A as ServiceFactory>::Error

Errors produced by the service

type Config = <A as ServiceFactory>::Config

Service factory configuration

type Service = Map<<A as ServiceFactory>::Service, F, Res>

The Service value created by this factory

type InitError = <A as ServiceFactory>::InitError

Errors produced while building a service.

type Future = MapServiceFuture<A, F, Res>

The future of the ServiceFactory instance.

Auto Trait Implementations

impl<A, F, Res> RefUnwindSafe for MapServiceFactory<A, F, Res> where
    A: RefUnwindSafe,
    F: RefUnwindSafe,
    Res: RefUnwindSafe
[src]

impl<A, F, Res> Send for MapServiceFactory<A, F, Res> where
    A: Send,
    F: Send,
    Res: Send
[src]

impl<A, F, Res> Sync for MapServiceFactory<A, F, Res> where
    A: Sync,
    F: Sync,
    Res: Sync
[src]

impl<A, F, Res> Unpin for MapServiceFactory<A, F, Res> where
    A: Unpin,
    F: Unpin,
    Res: Unpin
[src]

impl<A, F, Res> UnwindSafe for MapServiceFactory<A, F, Res> where
    A: UnwindSafe,
    F: UnwindSafe,
    Res: 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> IntoServiceFactory<T> for T where
    T: ServiceFactory
[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>,