Enum futures_util::future::try_join_all::TryJoinAllKind
source · enum TryJoinAllKind<F>where
F: TryFuture,{
Small {
elems: Pin<Box<[TryMaybeDone<IntoFuture<F>>]>>,
},
Big {
fut: TryCollect<FuturesOrdered<IntoFuture<F>>, Vec<F::Ok>>,
},
}
Variants§
Small
Fields
§
elems: Pin<Box<[TryMaybeDone<IntoFuture<F>>]>>
Big
Fields
§
fut: TryCollect<FuturesOrdered<IntoFuture<F>>, Vec<F::Ok>>
Auto Trait Implementations§
impl<F> !Freeze for TryJoinAllKind<F>
impl<F> !RefUnwindSafe for TryJoinAllKind<F>
impl<F> Send for TryJoinAllKind<F>
impl<F> Sync for TryJoinAllKind<F>
impl<F> Unpin for TryJoinAllKind<F>
impl<F> !UnwindSafe for TryJoinAllKind<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