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