pub trait Buffered: BufRead + Seek + Send + Sync {
    fn data(&self) -> &[u8]Notable traits for &'_ mut [u8]impl<'_> Write for &'_ mut [u8]impl<'_> Read for &'_ [u8];
fn grow(&mut self, len: usize); }
Expand description

Used to interact with a buffer.

Required methods

Returns the data contained in a buffer as a sequence of bytes.

Increases the size of a buffer.

Implementors