Trait future_iter::join_set::IntoJoinSetBy
source · pub trait IntoJoinSetBy<F, T>: IntoIteratorwhere
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§
fn into_join_set_by<M>(self, f: M) -> JoinSet<T>
Object Safety§
This trait is not object safe.