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

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

A virtual memory page.

Methods

impl<S: PageSize> Page<S>
[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).

Returns the page that contains the given virtual address.

Returns the start address of the page.

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

Returns the level 4 page table index of this page.

Returns the level 3 page table index of this page.

Important traits for PageRange<S>

Returns a range of pages, exclusive end.

Important traits for PageRangeInclusive<S>

Returns a range of pages, inclusive end.

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

Returns the level 2 page table index of this page.

impl Page<Size1GiB>
[src]

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

impl Page<Size2MiB>
[src]

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

impl Page<Size4KiB>
[src]

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

Returns the level 1 page table index of this page.

Trait Implementations

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

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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

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

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

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

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

This method returns an ordering between self and other values if one exists. Read more

This method tests less than (for self and other) and is used by the < operator. Read more

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

This method tests greater than (for self and other) and is used by the > operator. Read more

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

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

This method returns an Ordering between self and other. Read more

Compares and returns the maximum of two values. Read more

Compares and returns the minimum of two values. Read more

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

Formats the value using the given formatter. Read more

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

The resulting type after applying the + operator.

Performs the + operation.

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

Performs the += operation.

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

The resulting type after applying the - operator.

Performs the - operation.

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

Performs the -= operation.

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

The resulting type after applying the - operator.

Performs the - operation.

Auto Trait Implementations

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

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