Function eager_futures::all[][src]

pub fn all<'a: 'b, 'b, T: 'a>(
    iter: impl IntoIterator<Item = &'b Eager<'a, T>>
) -> Eager<'a, Vec<T>>

Return an eager future that completes after all of the input eager futures complete. The output of the returned eager future is the collected output of the input eager futures.