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

Required Methods

Encodes this type in legacy mode and writes the output to writer.

Implementors