[][src]Struct actix_service::dev::ThenServiceFactory

pub struct ThenServiceFactory<A, B> { /* fields omitted */ }

.then() service factory combinator

Trait Implementations

impl<A, B> Clone for ThenServiceFactory<A, B> where
    A: Clone,
    B: Clone
[src]

impl<A, B> ServiceFactory for ThenServiceFactory<A, B> where
    A: ServiceFactory,
    A::Config: Clone,
    B: ServiceFactory<Config = A::Config, Request = Result<A::Response, A::Error>, Error = A::Error, InitError = A::InitError>, 
[src]

type Request = A::Request

Requests handled by the service.

type Response = B::Response

Responses given by the service

type Error = A::Error

Errors produced by the service

type Config = A::Config

Service factory configuration

type Service = ThenService<A::Service, B::Service>

The Service value created by this factory

type InitError = A::InitError

Errors produced while building a service.

type Future = ThenServiceFactoryResponse<A, B>

The future of the Service instance.

Auto Trait Implementations

impl<A, B> RefUnwindSafe for ThenServiceFactory<A, B> where
    A: RefUnwindSafe,
    B: RefUnwindSafe

impl<A, B> Send for ThenServiceFactory<A, B> where
    A: Send,
    B: Send

impl<A, B> Sync for ThenServiceFactory<A, B> where
    A: Sync,
    B: Sync

impl<A, B> Unpin for ThenServiceFactory<A, B> where
    A: Unpin,
    B: Unpin

impl<A, B> UnwindSafe for ThenServiceFactory<A, B> where
    A: UnwindSafe,
    B: 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.