pub trait OpeningBi: Send {
// Required method
fn wait_bi(
self: Box<Self>,
) -> BoxedFuture<'static, Result<StreamsTuple<'static>, BoxedError<'static>>>;
}Required Methods§
fn wait_bi( self: Box<Self>, ) -> BoxedFuture<'static, Result<StreamsTuple<'static>, BoxedError<'static>>>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".