Trait xwt_core::traits::OpenBiStream
source · pub trait OpenBiStream: Streams {
type Opening: OpeningBiStream<Streams = Self>;
type Error: Error + Send + Sync + 'static;
// Required method
fn open_bi<'life0, 'async_trait>(
&'life0 self
) -> Pin<Box<dyn Future<Output = Result<Self::Opening, Self::Error>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
}