pub trait JoinIterExt<T, F>: Iteratorwhere F: Future<Output = T>,{ // Required method fn join(self) -> Join<F>; }
Returns a future that resolves to a vector of the outputs of the futures in the iterator.