pub trait HasSize {
    fn size(&self) -> u32;
}
Expand description

The HasSize trait provides a function for getting the current byte size.

Required Methods

Get the current byte size.

Implementors