blob: 43114d7373bd73963daf919bd5177b888703013f [file] [log] [blame]
/// Trait for types that return their size in bytes.
pub trait Sizeable {
fn get_size_bytes(&self) -> u32;
}