pub trait ToBuffer {
    fn get_buffer(&mut self) -> Buffer<'_>;
}
Expand description

Any type that can act as a buffer.

Required Methods

Returned the buffer.

Implementations on Foreign Types

Implementors