compio_io

Trait AsyncBufRead

Source
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§

Source

async fn fill_buf(&mut self) -> Result<&[u8]>

Try fill the internal buffer with data

Source

fn consume(&mut self, amount: usize)

Mark how much data is read

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.

Implementations on Foreign Types§

Source§

impl<A: AsyncBufRead + ?Sized> AsyncBufRead for &mut A

Source§

async fn fill_buf(&mut self) -> Result<&[u8]>

Source§

fn consume(&mut self, amount: usize)

Implementors§