Trait x86_64::structures::paging::page::PageSize[][src]

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.

Associated Constants

The page size in bytes.

A string representation of the page size for debug output.

Implementors