Struct ntex_service::dev::MapConfig [−][src]
pub struct MapConfig<A, R, F, C, C2> { /* fields omitted */ }
Expand description
map_config()
adapter service factory
Trait Implementations
impl<A, R, F, C, C2> ServiceFactory<R, C> for MapConfig<A, R, F, C, C2> where
A: ServiceFactory<R, C2>,
F: Fn(C) -> C2,
impl<A, R, F, C, C2> ServiceFactory<R, C> for MapConfig<A, R, F, C, C2> where
A: ServiceFactory<R, C2>,
F: Fn(C) -> C2,
Create and return a new service value asynchronously.
Map this service’s output to a different type, returning a new service of the resulting type. Read more
Map this service’s error to a different error, returning a new service.
fn map_init_err<F, E>(self, f: F) -> MapInitErr<Self, Req, Cfg, F, E> where
Self: Sized,
F: Fn(Self::InitError) -> E + Clone,
fn map_init_err<F, E>(self, f: F) -> MapInitErr<Self, Req, Cfg, F, E> where
Self: Sized,
F: Fn(Self::InitError) -> E + Clone,
Map this factory’s init error to a different error, returning a new service.
Auto Trait Implementations
impl<A, R, F, C, C2> RefUnwindSafe for MapConfig<A, R, F, C, C2> where
A: RefUnwindSafe,
C: RefUnwindSafe,
C2: RefUnwindSafe,
F: RefUnwindSafe,
R: RefUnwindSafe,
impl<A, R, F, C, C2> Send for MapConfig<A, R, F, C, C2> where
A: Send,
C: Send,
C2: Send,
F: Send,
R: Send,
impl<A, R, F, C, C2> Sync for MapConfig<A, R, F, C, C2> where
A: Sync,
C: Sync,
C2: Sync,
F: Sync,
R: Sync,
impl<A, R, F, C, C2> Unpin for MapConfig<A, R, F, C, C2> where
A: Unpin,
C: Unpin,
C2: Unpin,
F: Unpin,
R: Unpin,
impl<A, R, F, C, C2> UnwindSafe for MapConfig<A, R, F, C, C2> where
A: UnwindSafe,
C: UnwindSafe,
C2: UnwindSafe,
F: UnwindSafe,
R: UnwindSafe,
Blanket Implementations
Mutably borrows from an owned value. Read more
Convert Self
to a ServiceFactory