AsyncRead

Trait AsyncRead 

Source
pub trait AsyncRead: AsyncRead { }
Available on non-crate feature tokio only.
Expand description

Marker trait for types that implement AsyncRead.

When the tokio feature is enabled, this trait is implemented for types that implement tokio::io::AsyncRead and futures::io::AsyncRead.

When the tokio feature is disabled, this trait is implemented for types that implement futures::io::AsyncRead.

Implementors§