Trait JoinIterExt

Source
pub trait JoinIterExt<T, F>: Iterator
where F: Future<Output = T>,
{ // Required method fn join(self) -> Join<F>; }

Required Methods§

Source

fn join(self) -> Join<F>

Returns a future that resolves to a vector of the outputs of the futures in the iterator.

Implementors§

Source§

impl<T, F, IF, It> JoinIterExt<T, F> for It
where F: Future<Output = T>, IF: IntoFuture<Output = T, IntoFuture = F>, It: Iterator<Item = IF>,