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