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

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

Methods

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

[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).

[src]

Returns the page that contains the given virtual address.

[src]

Returns the start address of the page.

[src]

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

[src]

Returns the level 4 page table index of this page.

[src]

Returns the level 3 page table index of this page.

Important traits for PageRange<S>
[src]

Important traits for PageRangeInclusive<S>
[src]

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

[src]

Returns the level 2 page table index of this page.

impl Page<Size1GB>
[src]

[src]

impl Page<Size2MB>
[src]

[src]

impl Page<Size4KB>
[src]

[src]

[src]

Returns the level 1 page table index of this page.

Trait Implementations

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

[src]

Returns a copy of the value. Read more

1.0.0
[src]

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]

[src]

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

[src]

This method tests for !=.

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

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

[src]

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

[src]

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

[src]

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

[src]

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

[src]

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]

[src]

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

1.21.0
[src]

Compares and returns the maximum of two values. Read more

1.21.0
[src]

Compares and returns the minimum of two values. Read more

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

[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.

[src]

Performs the + operation.

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

[src]

Performs the += operation.

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

The resulting type after applying the - operator.

[src]

Performs the - operation.

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

[src]

Performs the -= operation.

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

The resulting type after applying the - operator.

[src]

Performs the - operation.

Auto Trait Implementations

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

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