AsyncWrite

Trait AsyncWrite 

Source
pub trait AsyncWrite: AsyncWrite { }
Available on non-crate feature tokio only.
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.

Implementors§