pub trait ByteSize {
    const BYTE_SIZE: Bytes;
}
Expand description

A trait defining the size, in bytes, of one unit of Self.

Example

println!("The size of one word in bytes is {}.", Words::BYTE_SIZE.0);

Required Associated Constants§

The size, in bytes, of a single unit of Self.

Implementors§