[][src]Struct tower_load::pending_requests::PendingRequestsDiscover

pub struct PendingRequestsDiscover<D, I = NoInstrument> { /* fields omitted */ }

Wraps inner's services with PendingRequests.

Methods

impl<D, I> PendingRequestsDiscover<D, I>[src]

pub fn new<Request>(discover: D, instrument: I) -> Self where
    D: Discover,
    D::Service: Service<Request>,
    I: Instrument<Handle, <D::Service as Service<Request>>::Response>, 
[src]

Wraps a Discover``, wrapping all of its services with PendingRequests`.

Trait Implementations

impl<D: Debug, I: Debug> Debug for PendingRequestsDiscover<D, I>[src]

impl<D, I> Discover for PendingRequestsDiscover<D, I> where
    D: Discover,
    I: Clone
[src]

type Key = D::Key

NewService key

type Service = PendingRequests<D::Service, I>

The type of Service yielded by this Discover.

type Error = D::Error

Error produced during discovery

fn poll_discover(
    self: Pin<&mut Self>,
    cx: &mut Context
) -> Poll<Result<Change<D::Key, Self::Service>, D::Error>>
[src]

Yields the next discovery change set.

impl<'pin, D, I> Unpin for PendingRequestsDiscover<D, I> where
    __PendingRequestsDiscover<'pin, D, I>: Unpin
[src]

Auto Trait Implementations

impl<D, I> RefUnwindSafe for PendingRequestsDiscover<D, I> where
    D: RefUnwindSafe,
    I: RefUnwindSafe

impl<D, I> Send for PendingRequestsDiscover<D, I> where
    D: Send,
    I: Send

impl<D, I> Sync for PendingRequestsDiscover<D, I> where
    D: Sync,
    I: Sync

impl<D, I> UnwindSafe for PendingRequestsDiscover<D, I> where
    D: UnwindSafe,
    I: UnwindSafe

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