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§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.