Struct futures_util::future::TryJoinAll  
source · [−]pub struct TryJoinAll<F> where
    F: TryFuture, { /* private fields */ }Expand description
Future for the try_join_all function.
Trait Implementations
sourceimpl<F> Debug for TryJoinAll<F> where
    F: TryFuture + Debug,
    F::Ok: Debug,
    F::Error: Debug,
    F::Output: Debug, 
 
impl<F> Debug for TryJoinAll<F> where
    F: TryFuture + Debug,
    F::Ok: Debug,
    F::Error: Debug,
    F::Output: Debug, 
sourceimpl<F> FromIterator<F> for TryJoinAll<F> where
    F: TryFuture, 
 
impl<F> FromIterator<F> for TryJoinAll<F> where
    F: TryFuture, 
sourcefn from_iter<T: IntoIterator<Item = F>>(iter: T) -> Self
 
fn from_iter<T: IntoIterator<Item = F>>(iter: T) -> Self
Creates a value from an iterator. Read more
Auto Trait Implementations
impl<F> !RefUnwindSafe for TryJoinAll<F>
impl<F> Send for TryJoinAll<F> where
    F: Send,
    <F as TryFuture>::Error: Send,
    <F as TryFuture>::Ok: Send, 
impl<F> Sync for TryJoinAll<F> where
    F: Sync,
    <F as TryFuture>::Error: Sync,
    <F as TryFuture>::Ok: Sync, 
impl<F> Unpin for TryJoinAll<F>
impl<F> !UnwindSafe for TryJoinAll<F>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
    T: ?Sized, 
 
impl<T> BorrowMut<T> for T where
    T: ?Sized, 
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
 
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<F> IntoFuture for F where
    F: Future, 
 
impl<F> IntoFuture for F where
    F: Future, 
type IntoFuture = F
type IntoFuture = F
Which kind of future are we turning this into?
sourcefn into_future(self) -> <F as IntoFuture>::IntoFuture
 
fn into_future(self) -> <F as IntoFuture>::IntoFuture
Creates a future from a value. Read more