pub trait TypeSize {
    fn type_size() -> usize;
}
Expand description

A trait defining methods that apply to constant-sized data types related to size.

Required methods

Get the size of a constant-sized data type.

Implementations on Foreign Types

Implementors