[][src]Struct actix_service::dev::UnitConfig

pub struct UnitConfig<A, C> { /* fields omitted */ }

unit_config() config combinator

Trait Implementations

impl<A, C> Clone for UnitConfig<A, C> where
    A: Clone
[src]

impl<A, C> ServiceFactory for UnitConfig<A, C> where
    A: ServiceFactory<Config = ()>, 
[src]

type Request = A::Request

Requests handled by the service.

type Response = A::Response

Responses given by the service

type Error = A::Error

Errors produced by the service

type Config = C

Service factory configuration

type Service = A::Service

The Service value created by this factory

type InitError = A::InitError

Errors produced while building a service.

type Future = A::Future

The future of the Service instance.

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

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, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> IntoServiceFactory<T> for T where
    T: ServiceFactory
[src]

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.