pub trait Decode<'b>: Sized { fn decode(d: &mut Decoder<'b>) -> Result<Self, Error>; }
A type that can be decoded from CBOR.
Decode a value using the given Decoder.
Decoder