Trait futures_concurrency::prelude::_ [−][src]
pub trait _ {
type Output;
type Future: Future<Output = Self::Output>;
fn join(self) -> Self::Future;
}Expand description
Wait for multiple futures to complete.
Awaits multiple futures simultaneously, returning the output of the futures once both complete.