pub trait Decode { // Required method fn decode<R: Read + Seek>( &mut self, reader: &mut BinaryReader<R> ) -> Result<()>; }
Trait for decoding from binary.
Decode from the binary reader into self.