pub trait PageSize: Copy + Eq + PartialOrd + Ord {
const SIZE: u64;
const SIZE_AS_DEBUG_STR: &'static str;
}
Expand description
Trait for abstracting over the three possible page sizes on x86_64, 4KiB, 2MiB, 1GiB.
Required Associated Constants§
sourceconst SIZE_AS_DEBUG_STR: &'static str
const SIZE_AS_DEBUG_STR: &'static str
A string representation of the page size for debug output.
Object Safety§
This trait is not object safe.