pub trait Buffered: BufRead + Seek + Send + Sync { // Required methods fn data(&self) -> &[u8] ⓘ; fn grow(&mut self, len: usize); }
Used to interact with a buffer.
Returns the data contained in a buffer as a sequence of bytes.
Increases the size of a buffer.