Function microasync_rt::join

source ·
pub fn join<T>(
    futures: Vec<Pin<Box<dyn Future<Output = T>, Global>>, Global>
) -> 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.