pub trait MessageWrite: Sized {
    fn write_message<W: WriterBackend>(&self, _: &mut Writer<W>) -> Result<()> { ... }
    fn get_size(&self) -> usize { ... }
    fn write_file<P: AsRef<Path>>(&self, p: P) -> Result<()> { ... }
}
Expand description

A trait to handle deserialization based on parsed Fields

Provided Methods

Writes Self into W writer

Computes necessary binary size of self once serialized in protobuf

Writes self into a file

Implementors