Trait Buffer
Other items inhard
pub trait Buffer where Self: Sized, { const SIZE: usize; fn new() -> Result<Self, HardError>; }
Trait implemented by any buffer type generated with buffer_type.
buffer_type
const SIZE: usize
The size of this buffer, in bytes.
fn new() -> Result<Self, HardError>
Create a new instance of the buffer, filled with garbage data.