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