Struct AndThenFuture
struct AndThenFuture<F1, F2: TryFuture, N> { ... }
Response future from AndThen services.
Implementations
impl<'__pin, F1, F2: TryFuture, N> Unpin for AndThenFuture<F1, F2, N>
impl<F> IntoFuture for AndThenFuture<F1, F2, N>
fn into_future(self: Self) -> <F as IntoFuture>::IntoFuture
impl<F, T, E> TryFuture for AndThenFuture<F1, F2, N>
fn try_poll(self: Pin<&mut F>, cx: &mut Context<'_>) -> Poll<<F as Future>::Output>
impl<F1, F2, N> Freeze for AndThenFuture<F1, F2, N>
impl<F1, F2, N> RefUnwindSafe for AndThenFuture<F1, F2, N>
impl<F1, F2, N> Send for AndThenFuture<F1, F2, N>
impl<F1, F2, N> Sync for AndThenFuture<F1, F2, N>
impl<F1, F2, N> UnsafeUnpin for AndThenFuture<F1, F2, N>
impl<F1, F2, N> UnwindSafe for AndThenFuture<F1, F2, N>
impl<F1, F2: TryFuture, N> Debug for AndThenFuture<F1, F2, N>
fn fmt(self: &Self, f: &mut Formatter<'_>) -> Result
impl<F1, F2: TryFuture, N> Future for AndThenFuture<F1, F2, N>
fn poll(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<<Self as >::Output>
impl<Fut> TryFutureExt for AndThenFuture<F1, F2, N>
impl<T> Any for AndThenFuture<F1, F2, N>
fn type_id(self: &Self) -> TypeId
impl<T> Borrow for AndThenFuture<F1, F2, N>
fn borrow(self: &Self) -> &T
impl<T> BorrowMut for AndThenFuture<F1, F2, N>
fn borrow_mut(self: &mut Self) -> &mut T
impl<T> From for AndThenFuture<F1, F2, N>
fn from(t: T) -> TReturns the argument unchanged.
impl<T> FutureExt for AndThenFuture<F1, F2, N>
impl<T> Instrument for AndThenFuture<F1, F2, N>
impl<T> WithSubscriber for AndThenFuture<F1, F2, N>
impl<T, U> Into for AndThenFuture<F1, F2, N>
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 AndThenFuture<F1, F2, N>
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
impl<T, U> TryInto for AndThenFuture<F1, F2, N>
fn try_into(self: Self) -> Result<U, <U as TryFrom<T>>::Error>