Struct actix_service::ApplyTransform[][src]

pub struct ApplyTransform<T, S, Req>(_, _);

Apply a Transform to a Service.

Trait Implementations

impl<T, S, Req> Clone for ApplyTransform<T, S, Req>[src]

impl<T, S, Req> ServiceFactory<Req> for ApplyTransform<T, S, Req> where
    S: ServiceFactory<Req>,
    T: Transform<S::Service, Req, InitError = S::InitError>, 
[src]

type Response = T::Response

Responses given by the created services.

type Error = T::Error

Errors produced by the created services.

type Config = S::Config

Service factory configuration.

type Service = T::Transform

The kind of Service created by this factory.

type InitError = T::InitError

Errors potentially raised while building a service.

type Future = ApplyTransformFuture<T, S, Req>

The future of the Service instance.g

Auto Trait Implementations

impl<T, S, Req> !Send for ApplyTransform<T, S, Req>

impl<T, S, Req> !Sync for ApplyTransform<T, S, Req>

impl<T, S, Req> Unpin for ApplyTransform<T, S, Req> where
    Req: Unpin

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<SF, Req> IntoServiceFactory<SF, Req> for SF where
    SF: ServiceFactory<Req>, 
[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.