Struct AsyncResponseFuture

struct AsyncResponseFuture<P, S, Request> { ... }
where
    P: AsyncPredicate<Request>,
    S: Service<<P as >::Request>

Filtered response future from AsyncFilter services.

Implementations

impl<'__pin, P, S, Request> Unpin for AsyncResponseFuture<P, S, Request>

impl<F> IntoFuture for AsyncResponseFuture<P, S, Request>

fn into_future(self: Self) -> <F as IntoFuture>::IntoFuture

impl<F, T, E> TryFuture for AsyncResponseFuture<P, S, Request>

fn try_poll(self: Pin<&mut F>, cx: &mut Context<'_>) -> Poll<<F as Future>::Output>

impl<Fut> TryFutureExt for AsyncResponseFuture<P, S, Request>

impl<P, S, Request> Freeze for AsyncResponseFuture<P, S, Request>

impl<P, S, Request> Future for AsyncResponseFuture<P, S, Request>

fn poll(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<<Self as >::Output>

impl<P, S, Request> RefUnwindSafe for AsyncResponseFuture<P, S, Request>

impl<P, S, Request> Send for AsyncResponseFuture<P, S, Request>

impl<P, S, Request> Sync for AsyncResponseFuture<P, S, Request>

impl<P, S, Request> UnwindSafe for AsyncResponseFuture<P, S, Request>

impl<P, S, Request: $crate::fmt::Debug> Debug for AsyncResponseFuture<P, S, Request>

fn fmt(self: &Self, f: &mut $crate::fmt::Formatter<'_>) -> $crate::fmt::Result

impl<T> Any for AsyncResponseFuture<P, S, Request>

fn type_id(self: &Self) -> TypeId

impl<T> Borrow for AsyncResponseFuture<P, S, Request>

fn borrow(self: &Self) -> &T

impl<T> BorrowMut for AsyncResponseFuture<P, S, Request>

fn borrow_mut(self: &mut Self) -> &mut T

impl<T> From for AsyncResponseFuture<P, S, Request>

fn from(t: T) -> T

Returns the argument unchanged.

impl<T> FutureExt for AsyncResponseFuture<P, S, Request>

impl<T> Instrument for AsyncResponseFuture<P, S, Request>

impl<T> WithSubscriber for AsyncResponseFuture<P, S, Request>

impl<T, U> Into for AsyncResponseFuture<P, S, Request>

fn into(self: Self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of [From]<T> for U chooses to do.

impl<T, U> TryFrom for AsyncResponseFuture<P, S, Request>

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

impl<T, U> TryInto for AsyncResponseFuture<P, S, Request>

fn try_into(self: Self) -> Result<U, <U as TryFrom<T>>::Error>