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.

Required methods

Implementations on Foreign Types

Implementors