pub trait ReadCbor {
    fn fmt(f: &mut impl Write) -> Result;
    fn read_cbor(cbor: &Cbor) -> Result<Self>
    where
        Self: Sized
; fn name() -> String { ... } }

Required Methods

Provided Methods

Implementations on Foreign Types

Implementors