Trait future_iter::join_set::IntoJoinSet

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

Provided Methods§

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

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

Implementors§