pub trait Output { // Required method fn write(&mut self, bytes: &[u8]); // Provided method fn push_byte(&mut self, byte: u8) { ... } }
Trait that allows writing of data.
Write to the output.
Write a single byte to the output.