pub async fn join<A, B>(fut_a: A, fut_b: B) -> (A::Output, B::Output) where
    A: Future,
    B: Future
Expand description

Future for the join combinator, waiting for two futures to complete.