pub async fn all<F: IntoFuture>(
futures: impl IntoIterator<Item = F>,
) -> Vec<F::Output>
Expand description
A future that awaits on all futures
at the same time and returns all results when all futures are ready.
This is the dynamic version of all!
.