pub trait WriteBuffer: Debug { fn buffer_write(&mut self, data: &[u8]) -> Result<(), Error>; }
Support for writing to a byte buffer
Append a slice to the buffer
alloc