pub trait Writer {
    fn write(&mut self, bytes: &[u8]) -> Result<(), EncodeError>;
}
Expand description

Trait that indicates that a struct can be used as a destination to encode data too. This is used by Encode

Required Methods

Write bytes to the underlying writer. Exactly bytes.len() bytes must be written, or else an error should be returned.

Implementations on Foreign Types

Implementors