pub trait AsyncWrite: AsyncWrite { }
Expand description
Marker trait for types that implement AsyncWrite
.
When the tokio
feature is enabled, this trait is implemented for types that implement
tokio::io::AsyncWrite
and futures::io::AsyncWrite
.
When the tokio
feature is disabled, this trait is implemented for types that implement
futures::io::AsyncWrite
.