[][src]Struct tower::limit::concurrency::ConcurrencyLimit

pub struct ConcurrencyLimit<T> { /* fields omitted */ }

Enforces a limit on the concurrent number of requests the underlying service can handle.

Methods

impl<T> ConcurrencyLimit<T>[src]

pub fn new(inner: T, max: usize) -> ConcurrencyLimit<T>[src]

Create a new concurrency limiter.

pub fn get_ref(&self) -> &T[src]

Get a reference to the inner service

pub fn get_mut(&mut self) -> &mut T[src]

Get a mutable reference to the inner service

pub fn into_inner(self) -> T[src]

Consume self, returning the inner service

Trait Implementations

impl<T> Debug for ConcurrencyLimit<T> where
    T: Debug
[src]

impl<S, Request> Service<Request> for ConcurrencyLimit<S> where
    S: Service<Request>,
    <S as Service<Request>>::Error: Into<Box<dyn Error + 'static + Send + Sync>>, 
[src]

type Response = <S as Service<Request>>::Response

Responses given by the service.

type Error = Box<dyn Error + 'static + Send + Sync>

Errors produced by the service.

type Future = ResponseFuture<<S as Service<Request>>::Future>

The future response value.

impl<S> Clone for ConcurrencyLimit<S> where
    S: Clone
[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl<T> Unpin for ConcurrencyLimit<T> where
    T: Unpin

impl<T> Sync for ConcurrencyLimit<T> where
    T: Sync

impl<T> Send for ConcurrencyLimit<T> where
    T: Send

impl<T> !RefUnwindSafe for ConcurrencyLimit<T>

impl<T> !UnwindSafe for ConcurrencyLimit<T>

Blanket Implementations

impl<T, Request> ServiceExt<Request> for T where
    T: Service<Request> + ?Sized
[src]

fn ready(self) -> Ready<Self, Request> where
    Self: Sized
[src]

A future yielding the service when it is ready to accept a request.

fn oneshot(self, req: Request) -> Oneshot<Self, Request> where
    Self: Sized
[src]

Consume this Service, calling with the providing request once it is ready.

fn call_all<S>(self, reqs: S) -> CallAll<Self, S> where
    Self: Sized,
    Self::Error: Into<Box<dyn Error + Send + Sync>>,
    S: Stream<Item = Request>,
    S::Error: Into<Box<dyn Error + Send + Sync>>, 
[src]

Process all requests from the given Stream, and produce a Stream of their responses. Read more

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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 = 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.

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]

impl<C, Target> MakeConnection<Target> for C where
    C: Service<Target>,
    <C as Service<Target>>::Response: AsyncRead,
    <C as Service<Target>>::Response: AsyncWrite
[src]

type Connection = <C as Service<Target>>::Response

The transport provided by this service

type Error = <C as Service<Target>>::Error

Errors produced by the connecting service

type Future = <C as Service<Target>>::Future

The future that eventually produces the transport

impl<M, S, Target, Request> MakeService<Target, Request> for M where
    M: Service<Target, Response = S>,
    S: Service<Request>, 
[src]

type Response = <S as Service<Request>>::Response

Responses given by the service

type Error = <S as Service<Request>>::Error

Errors produced by the service

type Service = S

The Service value created by this factory

type MakeError = <M as Service<Target>>::Error

Errors produced while building a service.

type Future = <M as Service<Target>>::Future

The future of the Service instance.