[][src]Struct actix_service::dev::Apply

pub struct Apply<T, F, R, In, Out, Err> where
    T: Service<Error = Err>, 
{ /* fields omitted */ }

Apply service combinator

Trait Implementations

impl<T, F, R, In, Out, Err> Service for Apply<T, F, R, In, Out, Err> where
    T: Service<Error = Err>,
    F: FnMut(In, &mut T) -> R,
    R: Future<Output = Result<Out, Err>>, 
[src]

type Request = In

Requests handled by the service.

type Response = Out

Responses given by the service.

type Error = Err

Errors produced by the service.

type Future = R

The future response value.

Auto Trait Implementations

impl<T, F, R, In, Out, Err> Send for Apply<T, F, R, In, Out, Err> where
    F: Send,
    In: Send,
    Out: Send,
    R: Send,
    T: Send

impl<T, F, R, In, Out, Err> Sync for Apply<T, F, R, In, Out, Err> where
    F: Sync,
    In: Sync,
    Out: Sync,
    R: Sync,
    T: Sync

impl<T, F, R, In, Out, Err> Unpin for Apply<T, F, R, In, Out, Err> where
    F: Unpin,
    In: Unpin,
    Out: Unpin,
    R: Unpin,
    T: Unpin

impl<T, F, R, In, Out, Err> UnwindSafe for Apply<T, F, R, In, Out, Err> where
    F: UnwindSafe,
    In: UnwindSafe,
    Out: UnwindSafe,
    R: UnwindSafe,
    T: UnwindSafe

impl<T, F, R, In, Out, Err> RefUnwindSafe for Apply<T, F, R, In, Out, Err> where
    F: RefUnwindSafe,
    In: RefUnwindSafe,
    Out: RefUnwindSafe,
    R: RefUnwindSafe,
    T: RefUnwindSafe

Blanket Implementations

impl<T> IntoService<T> for T where
    T: Service
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = !

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.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]