pub trait Buffer: AsRef<[u8]> { // Required method fn extend_with(&mut self, buf: &[u8]); }
A type that can be extended with byte slices.