Trait Decode

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

Trait for decoding from binary.

Required Methods§

Source

fn decode(&mut self, reader: &mut BinaryReader<'_>) -> Result<()>

Decode from the binary reader into self.

Implementors§