Trait minicbor::bytes::DecodeBytes
source · pub trait DecodeBytes<'b, C>: Sized {
// Required method
fn decode_bytes(d: &mut Decoder<'b>, ctx: &mut C) -> Result<Self, Error>;
// Provided method
fn nil() -> Option<Self> { ... }
}
Expand description
Like Decode
but specific for decoding from byte slices.