Enum futures_util::future::join_all::JoinAllKind
source · enum JoinAllKind<F>where
F: Future,{
Small {
elems: Pin<Box<[MaybeDone<F>]>>,
},
Big {
fut: Collect<FuturesOrdered<F>, Vec<F::Output>>,
},
}
Variants§
Auto Trait Implementations§
impl<F> !Freeze for JoinAllKind<F>
impl<F> !RefUnwindSafe for JoinAllKind<F>
impl<F> Send for JoinAllKind<F>
impl<F> Sync for JoinAllKind<F>
impl<F> Unpin for JoinAllKind<F>
impl<F> !UnwindSafe for JoinAllKind<F>
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