pub trait Encode {
    fn encode(&self, writer: &mut dyn Write) -> Result<()>;
}

Required Methods

Encodes this type and writes the output to writer.

Implementors