pub trait Encode { // Required method fn encode<W: Write + Seek>( &self, writer: &mut BinaryWriter<W> ) -> Result<()>; }
Trait for encoding to binary.
Encode self into the binary writer.