pub trait Buffer: AsRef<[u8]> {
    fn extend_with(&mut self, buf: &[u8]);
}
Expand description

A type that can be extended with byte slices.

Required Methods

Implementations on Foreign Types

Implementors