pub trait IntoJoinSet<F, T>: IntoIteratorwhere
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§
fn into_join_set(self) -> JoinSet<T>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.