pub trait BerEncode { // Required method fn encode(&self, writer: &mut BerWriter) -> Result<()>; }
Trait for types that can be encoded to BER format.
Encode this value to the writer.