pub trait Encode { fn encode(&self, writer: &mut dyn Write) -> Result<()>; }
Encodes this type and writes the output to writer.
writer