pub trait Length {
    fn length(&self) -> usize;
}
Expand description

The serialized length of the data that enables macro derived serialization and deserialization.

Required Methods

The serialized length of the data

Implementors