Struct actix_service::dev::Apply [−][src]
pub struct Apply<T, F, R, In, Out, Err> where
T: Service<Error = Err>, { /* fields omitted */ }
Expand description
Apply
service combinator
Trait Implementations
type Request = In
type Request = In
Requests handled by the service.
type Response = Out
type Response = Out
Responses given by the service.
type Error = Err
type Error = Err
Errors produced by the service.
type Future = R
type Future = R
The future response value.
Returns Ready
when the service is able to process requests. Read more
Process the request and return the response asynchronously. Read more
Map this service’s output to a different type, returning a new service of the resulting type. Read more
Auto Trait Implementations
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,
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,
Blanket Implementations
Mutably borrows from an owned value. Read more
Convert to a Service