pub trait AsyncRead: for<'a> AsyncReadWith<'a> { }Expand description
Read bytes from a source asynchronously.
This is an asynchronous version of std::io::Read.
You should not implement this trait manually, instead implement AsyncReadWith.
pub trait AsyncRead: for<'a> AsyncReadWith<'a> { }Read bytes from a source asynchronously.
This is an asynchronous version of std::io::Read.
You should not implement this trait manually, instead implement AsyncReadWith.