Trait future_iter::join_set::IntoJoinSetBy

source ·
pub trait IntoJoinSetBy<F, T>: IntoIterator
where Self: Sized, <Self as IntoIterator>::Item: Send + 'static, F: Future<Output = T> + Send + 'static, T: Send + 'static,
{ // Provided method fn into_join_set_by<M>(self, f: M) -> JoinSet<T> where M: FnMut(Self::Item) -> F { ... } }

Provided Methods§

source

fn into_join_set_by<M>(self, f: M) -> JoinSet<T>
where M: FnMut(Self::Item) -> F,

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl<F, T, U> IntoJoinSetBy<F, T> for Vec<U>
where F: Future<Output = T> + Send + 'static, T: Send + 'static, U: Send + 'static,

Implementors§