pub trait SizeInBytes {
    // Required method
    fn size_in_bytes() -> usize;
}

Required Methods§

source

fn size_in_bytes() -> usize

Returns the size in bytes.

Implementors§