[][src]Struct actix_utils::inflight::InFlight

pub struct InFlight { /* fields omitted */ }

InFlight - new service for service that can limit number of in-flight async requests.

Default number of in-flight requests is 15

Methods

impl InFlight[src]

pub fn new(max: usize) -> Self[src]

Trait Implementations

impl Default for InFlight[src]

impl<T: Service> NewTransform<T> for InFlight[src]

type Request = T::Request

Requests handled by the service.

type Response = T::Response

Responses given by the service.

type Error = T::Error

Errors produced by the service.

type InitError = ()

Errors produced while building a service.

type Transform = InFlightService

The TransformService value created by this factory

type Future = FutureResult<Self::Transform, Self::InitError>

The future response value.

fn map_err<F, E>(self, f: F) -> TransformMapErrNewTransform<Self, Service, F, E> where
    F: Fn(Self::Error) -> E, 
[src]

Map this transforms's output to a different type, returning a new transform of the resulting type. Read more

Auto Trait Implementations

impl Send for InFlight

impl Sync for InFlight

Blanket Implementations

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

impl<T> From for T[src]

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

impl<T, S> IntoNewTransform for T where
    T: NewTransform<S>, 
[src]