pub async fn join<A, B>(fut_a: A, fut_b: B) -> (A::Output, B::Output)where A: Future, B: Future,
Future for the join combinator, waiting for two futures to complete.
join