pub trait Joinable<T: Send + 'static, U: Send + 'static>: Sized {
// Required method
fn join(self) -> Result<T, U>;
}
Required Methods§
Object Safety§
This trait is not object safe.
pub trait Joinable<T: Send + 'static, U: Send + 'static>: Sized {
// Required method
fn join(self) -> Result<T, U>;
}