join

Function join 

Source
pub fn join<T>(
    futures: Vec<Pin<Box<dyn Future<Output = T> + '_>>>,
) -> JoinedFuture<'_, T> 
Expand description

Joins multiple futures into one, which will be ready once all of the inner ones are. This is effectively a small one-time-use runtime without the ability to add any tasks.