pub struct Join3<A: Future, B: Future, C: Future> { /* private fields */ }Expand description
Future returned by join3().
Future that polls three sub-futures and returns all outputs when complete.
Trait Implementations§
Source§impl<A: Future, B: Future, C: Future> Future for Join3<A, B, C>
impl<A: Future, B: Future, C: Future> Future for Join3<A, B, C>
impl<'__pin, A: Future, B: Future, C: Future> Unpin for Join3<A, B, C>where
PinnedFieldsOf<__Origin<'__pin, A, B, C>>: Unpin,
Auto Trait Implementations§
impl<A, B, C> Freeze for Join3<A, B, C>
impl<A, B, C> RefUnwindSafe for Join3<A, B, C>where
A: RefUnwindSafe,
<A as Future>::Output: RefUnwindSafe,
B: RefUnwindSafe,
<B as Future>::Output: RefUnwindSafe,
C: RefUnwindSafe,
<C as Future>::Output: RefUnwindSafe,
impl<A, B, C> Send for Join3<A, B, C>
impl<A, B, C> Sync for Join3<A, B, C>
impl<A, B, C> UnsafeUnpin for Join3<A, B, C>where
A: UnsafeUnpin,
<A as Future>::Output: UnsafeUnpin,
B: UnsafeUnpin,
<B as Future>::Output: UnsafeUnpin,
C: UnsafeUnpin,
<C as Future>::Output: UnsafeUnpin,
impl<A, B, C> UnwindSafe for Join3<A, B, C>where
A: UnwindSafe,
<A as Future>::Output: UnwindSafe,
B: UnwindSafe,
<B as Future>::Output: UnwindSafe,
C: UnwindSafe,
<C as Future>::Output: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<F> IntoFuture for Fwhere
F: Future,
impl<F> IntoFuture for Fwhere
F: Future,
Source§type IntoFuture = F
type IntoFuture = F
Which kind of future are we turning this into?
Source§fn into_future(self) -> <F as IntoFuture>::IntoFuture
fn into_future(self) -> <F as IntoFuture>::IntoFuture
Creates a future from a value. Read more