pub trait Joinable<C: ?Sized + Config>: ActiveList<C> {
type Output;
// Required methods
unsafe fn bind(self: Pin<&mut Self>, state: Pin<&JoinState<C>>);
fn collect(self: Pin<&mut Self>) -> Self::Output;
}Expand description
Represents a heterogeneous list of Job to be awaited.
Required Associated Types§
Required Methods§
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.