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§
source§impl<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,
source§impl<F> FromIterator<F> for TryJoinAll<F>where
    F: TryFuture,
 
impl<F> FromIterator<F> for TryJoinAll<F>where
    F: TryFuture,
source§fn 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§
source§impl<F> IntoFuture for Fwhere
    F: Future,
 
impl<F> IntoFuture for Fwhere
    F: Future,
§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