Struct ResponseFuture

struct ResponseFuture<F> { ... }

Future for the LoadShed service.

Implementations

impl<'__pin, F> Unpin for ResponseFuture<F>

impl<F> Debug for ResponseFuture<F>

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

impl<F> Freeze for ResponseFuture<F>

impl<F> IntoFuture for ResponseFuture<F>

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

impl<F> RefUnwindSafe for ResponseFuture<F>

impl<F> Send for ResponseFuture<F>

impl<F> Sync for ResponseFuture<F>

impl<F> UnwindSafe for ResponseFuture<F>

impl<F, T, E> Future for ResponseFuture<F>

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

impl<F, T, E> TryFuture for ResponseFuture<F>

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

impl<Fut> TryFutureExt for ResponseFuture<F>

impl<T> Any for ResponseFuture<F>

fn type_id(self: &Self) -> TypeId

impl<T> Borrow for ResponseFuture<F>

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

impl<T> BorrowMut for ResponseFuture<F>

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

impl<T> From for ResponseFuture<F>

fn from(t: T) -> T

Returns the argument unchanged.

impl<T> FutureExt for ResponseFuture<F>

impl<T> Instrument for ResponseFuture<F>

impl<T> WithSubscriber for ResponseFuture<F>

impl<T, U> Into for ResponseFuture<F>

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

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

impl<T, U> TryInto for ResponseFuture<F>

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