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

#[repr(transparent)]
pub struct PageTable { /* fields omitted */ }

Represents a page table.

Always page-sized.

This struct implements the Index and IndexMut traits, so the entries can be accessed through index operations. For example, page_table[15] returns the 15th page table entry.

Methods

impl PageTable
[src]

Clears all entries.

Trait Implementations

impl Index<usize> for PageTable
[src]

The returned type after indexing.

Performs the indexing (container[index]) operation.

impl IndexMut<usize> for PageTable
[src]

Performs the mutable indexing (container[index]) operation.

impl Index<u9> for PageTable
[src]

The returned type after indexing.

Performs the indexing (container[index]) operation.

impl IndexMut<u9> for PageTable
[src]

Performs the mutable indexing (container[index]) operation.

impl Debug for PageTable
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for PageTable

impl Sync for PageTable