pub trait Encode {
    fn encode(&self, writer: &mut Writer);
}
Expand description

Generic Encode trait to write an element T into the CBOR writer

Required methods

Implementations on Foreign Types

Implementors