pub struct AndThenFuture<F1, F2: TryFuture, N> { /* private fields */ }
Expand description
Response future from AndThen
services.
Trait Implementations
sourceimpl<F1, F2: TryFuture, N> Debug for AndThenFuture<F1, F2, N>
impl<F1, F2: TryFuture, N> Debug for AndThenFuture<F1, F2, N>
sourceimpl<F1, F2: TryFuture, N> Future for AndThenFuture<F1, F2, N>where
AndThen<ErrInto<F1, F2::Error>, F2, N>: Future,
impl<F1, F2: TryFuture, N> Future for AndThenFuture<F1, F2, N>where
AndThen<ErrInto<F1, F2::Error>, F2, N>: Future,
impl<'__pin, F1, F2: TryFuture, N> Unpin for AndThenFuture<F1, F2, N>where
__Origin<'__pin, F1, F2, N>: Unpin,
Auto Trait Implementations
impl<F1, F2, N> RefUnwindSafe for AndThenFuture<F1, F2, N>where
F1: RefUnwindSafe,
F2: RefUnwindSafe,
N: RefUnwindSafe,
impl<F1, F2, N> Send for AndThenFuture<F1, F2, N>where
F1: Send,
F2: Send,
N: Send,
impl<F1, F2, N> Sync for AndThenFuture<F1, F2, N>where
F1: Sync,
F2: Sync,
N: Sync,
impl<F1, F2, N> UnwindSafe for AndThenFuture<F1, F2, N>where
F1: UnwindSafe,
F2: UnwindSafe,
N: UnwindSafe,
Blanket Implementations
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstablefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more