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

Encode trait

Required methods

Write the type to writer by CBOR encoding.

Implementations on Foreign Types

Implementors