Function ntex::util::join[][src]

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

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