pub trait AsyncClientConnectionwhere
Self: Sized,{
type Reader: AsyncReadConnection + Unpin + MaybeSend + 'static;
type Writer: AsyncWriteConnection + Unpin + MaybeSend + 'static;
// Required method
fn to_indi(self) -> (Self::Writer, Self::Reader);
}Required Associated Types§
type Reader: AsyncReadConnection + Unpin + MaybeSend + 'static
type Writer: AsyncWriteConnection + Unpin + MaybeSend + 'static
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".