Struct actix_service::dev::UnitConfig [−][src]
pub struct UnitConfig<A, C> { /* fields omitted */ }
Expand description
unit_config()
config combinator
Trait Implementations
type Config = C
type Config = C
Service factory configuration.
Create and return a new service 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, F, E> where
Self: Sized,
F: Fn(Self::InitError) -> E + Clone,
fn map_init_err<F, E>(self, f: F) -> MapInitErr<Self, 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, C> RefUnwindSafe for UnitConfig<A, C> where
A: RefUnwindSafe,
C: RefUnwindSafe,
impl<A, C> Send for UnitConfig<A, C> where
A: Send,
C: Send,
impl<A, C> Sync for UnitConfig<A, C> where
A: Sync,
C: Sync,
impl<A, C> Unpin for UnitConfig<A, C> where
A: Unpin,
C: Unpin,
impl<A, C> UnwindSafe for UnitConfig<A, C> where
A: UnwindSafe,
C: UnwindSafe,
Blanket Implementations
Mutably borrows from an owned value. Read more
Convert Self
to a ServiceFactory