Function ntex_util::future::join[][src]

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.