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