[][src]Struct x86_64::structures::paging::page::Page

#[repr(C)]
pub struct Page<S: PageSize = Size4KiB> { /* fields omitted */ }

A virtual memory page.

Methods

impl<S: PageSize> Page<S>[src]

pub const SIZE: u64[src]

The page size in bytes.

pub fn from_start_address(address: VirtAddr) -> Result<Self, ()>[src]

Returns the page that starts at the given virtual address.

Returns an error if the address is not correctly aligned (i.e. is not a valid page start).

pub fn containing_address(address: VirtAddr) -> Self[src]

Returns the page that contains the given virtual address.

pub fn start_address(&self) -> VirtAddr[src]

Returns the start address of the page.

pub const fn size(&self) -> u64[src]

Returns the size the page (4KB, 2MB or 1GB).

pub fn p4_index(&self) -> u9[src]

Returns the level 4 page table index of this page.

pub fn p3_index(&self) -> u9[src]

Returns the level 3 page table index of this page.

Important traits for PageRange<S>
pub fn range(start: Self, end: Self) -> PageRange<S>[src]

Returns a range of pages, exclusive end.

Important traits for PageRangeInclusive<S>
pub fn range_inclusive(start: Self, end: Self) -> PageRangeInclusive<S>[src]

Returns a range of pages, inclusive end.

impl<S: NotGiantPageSize> Page<S>[src]

pub fn p2_index(&self) -> u9[src]

Returns the level 2 page table index of this page.

impl Page<Size1GiB>[src]

pub fn from_page_table_indices_1gib(p4_index: u9, p3_index: u9) -> Self[src]

Returns the 1GiB memory page with the specified page table indices.

impl Page<Size2MiB>[src]

pub fn from_page_table_indices_2mib(
    p4_index: u9,
    p3_index: u9,
    p2_index: u9
) -> Self
[src]

Returns the 2MiB memory page with the specified page table indices.

impl Page<Size4KiB>[src]

pub fn from_page_table_indices(
    p4_index: u9,
    p3_index: u9,
    p2_index: u9,
    p1_index: u9
) -> Self
[src]

Returns the 4KiB memory page with the specified page table indices.

pub fn p1_index(&self) -> u9[src]

Returns the level 1 page table index of this page.

Trait Implementations

impl<S: PageSize> Debug for Page<S>[src]

impl<S: PageSize> Sub<u64> for Page<S>[src]

type Output = Self

The resulting type after applying the - operator.

impl<S: PageSize> Sub<Page<S>> for Page<S>[src]

type Output = u64

The resulting type after applying the - operator.

impl<S: PartialEq + PageSize> PartialEq<Page<S>> for Page<S>[src]

impl<S: Eq + PageSize> Eq for Page<S>[src]

impl<S: Ord + PageSize> Ord for Page<S>[src]

impl<S: PartialOrd + PageSize> PartialOrd<Page<S>> for Page<S>[src]

impl<S: PageSize> Add<u64> for Page<S>[src]

type Output = Self

The resulting type after applying the + operator.

impl<S: PageSize> AddAssign<u64> for Page<S>[src]

impl<S: PageSize> SubAssign<u64> for Page<S>[src]

impl<S: Copy + PageSize> Copy for Page<S>[src]

impl<S: PageSize> StructuralPartialEq for Page<S>[src]

impl<S: PageSize> StructuralEq for Page<S>[src]

impl<S: Clone + PageSize> Clone for Page<S>[src]

Auto Trait Implementations

impl<S> Unpin for Page<S> where
    S: Unpin

impl<S> Send for Page<S> where
    S: Send

impl<S> Sync for Page<S> where
    S: Sync

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]