Function join

Source
pub fn join<T>(futures: Vec<BoxFuture<'_, 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.