pub trait Decode {
    fn decode(&mut self, de: &mut Deserializer<'_>) -> Result<()>;
}
Expand description

Trait for decoding from binary.

Required methods

Decode from the deserializer into self.

Implementors