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

pub trait PageSize: Copy + Eq + PartialOrd + Ord {
    const SIZE: u64;
    const SIZE_AS_DEBUG_STR: &'static str;
}

Trait for abstracting over the three possible page sizes on x86_64, 4KiB, 2MiB, 1GiB.

Associated Constants

const SIZE: u64

The page size in bytes.

const SIZE_AS_DEBUG_STR: &'static str

A string representation of the page size for debug output.

Loading content...

Implementors

impl PageSize for Size1GiB[src]

impl PageSize for Size2MiB[src]

impl PageSize for Size4KiB[src]

Loading content...