pub trait IsoSized {
// Required method
fn size(&self) -> usize;
}Expand description
This trait should be implemented by all types that have a known size when serialized.
pub trait IsoSized {
// Required method
fn size(&self) -> usize;
}This trait should be implemented by all types that have a known size when serialized.