pub trait OpenBi: Send + Sync {
// Required method
fn open_bi(
&self,
) -> BoxedFuture<'_, Result<Box<dyn OpeningBi + 'static>, BoxedError<'static>>>;
}pub trait OpenBi: Send + Sync {
// Required method
fn open_bi(
&self,
) -> BoxedFuture<'_, Result<Box<dyn OpeningBi + 'static>, BoxedError<'static>>>;
}