Skip to main content

OpenBi

Trait OpenBi 

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

Required Methods§

Source

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".

Implementors§

Source§

impl<X> OpenBi for X
where X: OpenBi + Sync + 'static,