Struct ResponseFuture

struct ResponseFuture<F, E> { ... }

Response future from SpawnReady services.

Implementations

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

impl<F> IntoFuture for ResponseFuture<F, E>

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

impl<F, E> Debug for ResponseFuture<F, E>

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

impl<F, E> Freeze for ResponseFuture<F, E>

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

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

impl<F, E> RefUnwindSafe for ResponseFuture<F, E>

impl<F, E> Send for ResponseFuture<F, E>

impl<F, E> Sync for ResponseFuture<F, E>

impl<F, E> UnwindSafe for ResponseFuture<F, E>

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

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

impl<Fut> TryFutureExt for ResponseFuture<F, E>

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

fn type_id(self: &Self) -> TypeId

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

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

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

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

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

fn from(t: T) -> T

Returns the argument unchanged.

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

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

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

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

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, E>

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

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

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