pub trait Decode {
    fn decode(&mut self, reader: &mut BinaryReader<'_>) -> BinaryResult<()>;
}
Expand description

Trait for decoding from binary.

Required Methods

Decode from the binary reader into self.

Implementors