Struct ResponseFuture
struct ResponseFuture<T> { ... }
Future that completes when the buffered service eventually services the submitted request.
Implementations
impl<'__pin, T> Unpin for ResponseFuture<T>
impl<F> IntoFuture for ResponseFuture<T>
fn into_future(self: Self) -> <F as IntoFuture>::IntoFuture
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<T>
fn try_poll(self: Pin<&mut F>, cx: &mut Context<'_>) -> Poll<<F as Future>::Output>
impl<Fut> TryFutureExt for ResponseFuture<T>
impl<T> Any for ResponseFuture<T>
fn type_id(self: &Self) -> TypeId
impl<T> Borrow for ResponseFuture<T>
fn borrow(self: &Self) -> &T
impl<T> BorrowMut for ResponseFuture<T>
fn borrow_mut(self: &mut Self) -> &mut T
impl<T> Freeze for ResponseFuture<T>
impl<T> From for ResponseFuture<T>
fn from(t: T) -> TReturns the argument unchanged.
impl<T> FutureExt for ResponseFuture<T>
impl<T> Instrument for ResponseFuture<T>
impl<T> RefUnwindSafe for ResponseFuture<T>
impl<T> Send for ResponseFuture<T>
impl<T> Sync for ResponseFuture<T>
impl<T> UnwindSafe for ResponseFuture<T>
impl<T> WithSubscriber for ResponseFuture<T>
impl<T, U> Into for ResponseFuture<T>
fn into(self: Self) -> UCalls
U::from(self).That is, this conversion is whatever the implementation of
[From]<T> for Uchooses to do.
impl<T, U> TryFrom for ResponseFuture<T>
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
impl<T, U> TryInto for ResponseFuture<T>
fn try_into(self: Self) -> Result<U, <U as TryFrom<T>>::Error>
impl<T: $crate::fmt::Debug> Debug for ResponseFuture<T>
fn fmt(self: &Self, f: &mut $crate::fmt::Formatter<'_>) -> $crate::fmt::Result