Struct ResponseFuture

struct ResponseFuture<S, B, P> { ... }
where
    S: Service<http::Request<B>>

Response future for FollowRedirect.

Implementations

impl<'__pin, S, B, P> Unpin for ResponseFuture<S, B, P>

impl<F> IntoFuture for ResponseFuture<S, B, P>

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

impl<F, T, E> TryFuture for ResponseFuture<S, B, P>

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

impl<Fut> TryFutureExt for ResponseFuture<S, B, P>

impl<S, B, P> Freeze for ResponseFuture<S, B, P>

impl<S, B, P> RefUnwindSafe for ResponseFuture<S, B, P>

impl<S, B, P> Send for ResponseFuture<S, B, P>

impl<S, B, P> Sync for ResponseFuture<S, B, P>

impl<S, B, P> UnsafeUnpin for ResponseFuture<S, B, P>

impl<S, B, P> UnwindSafe for ResponseFuture<S, B, P>

impl<S, B: $crate::fmt::Debug, P: $crate::fmt::Debug> Debug for ResponseFuture<S, B, P>

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

impl<S, ReqBody, ResBody, P> Future for ResponseFuture<S, ReqBody, P>

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

impl<T> Any for ResponseFuture<S, B, P>

fn type_id(self: &Self) -> TypeId

impl<T> Borrow for ResponseFuture<S, B, P>

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

impl<T> BorrowMut for ResponseFuture<S, B, P>

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

impl<T> From for ResponseFuture<S, B, P>

fn from(t: T) -> T

Returns the argument unchanged.

impl<T> FutureExt for ResponseFuture<S, B, P>

impl<T> Instrument for ResponseFuture<S, B, P>

impl<T> PolicyExt for ResponseFuture<S, B, P>

fn and<P, B, E>(self: Self, other: P) -> And<T, P>
where
    T: Policy<B, E>,
    P: Policy<B, E>
fn or<P, B, E>(self: Self, other: P) -> Or<T, P>
where
    T: Policy<B, E>,
    P: Policy<B, E>

impl<T> WithSubscriber for ResponseFuture<S, B, P>

impl<T, U> Into for ResponseFuture<S, B, P>

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 ResponseFuture<S, B, P>

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

impl<T, U> TryInto for ResponseFuture<S, B, P>

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