[][src]Struct x86::bits64::paging::PDEntry

#[repr(transparent)]
pub struct PDEntry(pub u64);

A PD Entry consists of an address and a bunch of flags.

Methods

impl PDEntry[src]

pub fn new(pt: PAddr, flags: PDFlags) -> PDEntry[src]

Creates a new PDEntry.

Arguments

  • pt - The physical address of the page table.
  • flags- Additional flags for the entry.

pub fn address(self) -> PAddr[src]

Retrieves the physical address in this entry.

pub fn flags(self) -> PDFlags[src]

Returns the flags corresponding to this entry.

pub fn is_present(self) -> bool[src]

Present; must be 1 to map a 2-MByte page or reference a page table.

pub fn is_writeable(self) -> bool[src]

Read/write; if 0, writes may not be allowed to the 2-MByte region controlled by this entry

pub fn is_user_mode_allowed(self) -> bool[src]

User/supervisor; user-mode accesses are not allowed to the 2-MByte region controlled by this entry.

pub fn is_page_write_through(self) -> bool[src]

Page-level write-through.

pub fn is_page_level_cache_disabled(self) -> bool[src]

Page-level cache disable.

pub fn is_accessed(self) -> bool[src]

Accessed; if PS set indicates whether software has accessed the 2-MByte page else indicates whether this entry has been used for linear-address translation.

pub fn is_dirty(self) -> bool[src]

Dirty; if PS set indicates whether software has written to the 2-MByte page referenced by this entry else ignored.

pub fn is_page(self) -> bool[src]

Page size; if set this entry maps a 2-MByte page; otherwise, this entry references a page directory.

pub fn is_global(self) -> bool[src]

Global; if PS && CR4.PGE = 1, determines whether the translation is global; ignored otherwise if not PS this is ignored.

pub fn is_pat(self) -> bool[src]

Indirectly determines the memory type used to access the 2-MByte page referenced by this entry. if not PS this is ignored.

pub fn is_instruction_fetching_disabled(self) -> bool[src]

If IA32_EFER.NXE = 1, execute-disable. If 1, instruction fetches are not allowed from the 2-Mbyte region.

Trait Implementations

impl Copy for PDEntry[src]

impl Debug for PDEntry[src]

impl Clone for PDEntry[src]

default fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Send for PDEntry

impl Sync for PDEntry

Blanket Implementations

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto 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, U> Into for T where
    U: From<T>, 
[src]

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

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

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