pub trait Serializable {
    fn to_stream(&self, stream: &mut BinaryStream);
    fn from_stream(stream: &mut BinaryStream) -> Self;
}

Required Methods

Implementors