pub trait AsyncBufRead: AsyncRead {
// Required methods
async fn fill_buf(&mut self) -> Result<&[u8]>;
fn consume(&mut self, amount: usize);
}
Expand description
§AsyncBufRead
Async read with buffered content.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.