Struct futures_util::future::JoinAll [] [src]

#[must_use = "futures do nothing unless polled"]
pub struct JoinAll<F> where
    F: Future
{ /* fields omitted */ }

A future which takes a list of futures and resolves with a vector of the completed values.

This future is created with the join_all method.

Trait Implementations

impl<F> Debug for JoinAll<F> where
    F: Future + Debug,
    F::Item: Debug
[src]

[src]

Formats the value using the given formatter. Read more

impl<F> Future for JoinAll<F> where
    F: Future
[src]

A successful value

An error

[src]

Attempt to resolve the future to a final value, registering the current task for wakeup if the value is not yet available. Read more

impl<F: IntoFuture> FromIterator<F> for JoinAll<F::Future>
[src]

[src]

Creates a value from an iterator. Read more

Auto Trait Implementations

impl<F> Send for JoinAll<F> where
    F: Send,
    <F as Future>::Item: Send

impl<F> Sync for JoinAll<F> where
    F: Sync,
    <F as Future>::Item: Sync