pub trait ByteWriter {
    fn write(&mut self, byte: u8) -> Result<(), OutError>;
}
Expand description

A trait for objects which are byte-oriented sinks.

This trait looks similar to Write trait; major difference is for the write method to return Error type

Required Methods

Implementors