Trait minicbor::bytes::DecodeBytes
source · [−]pub trait DecodeBytes<'b>: Sized {
fn decode_bytes(d: &mut Decoder<'b>) -> Result<Self, Error>;
}
Expand description
Like Decode
but specific for decoding from byte slices.
pub trait DecodeBytes<'b>: Sized {
fn decode_bytes(d: &mut Decoder<'b>) -> Result<Self, Error>;
}
Like Decode
but specific for decoding from byte slices.