Trait rzcobs::Write[][src]

pub trait Write {
    type Error;
    fn write(&mut self, byte: u8) -> Result<(), Self::Error>;
}
Expand description

Write trait to use with Encoder

Associated Types

Required methods

fn write(&mut self, byte: u8) -> Result<(), Self::Error>[src]

Write a single byte.

Implementors