[][src]Struct mmu::amd64::Entry

pub struct Entry { /* fields omitted */ }

Page table entry.

Methods

impl Entry[src]

pub const fn new() -> Self[src]

Create a new page table entry.

pub fn clear(&mut self)[src]

Set the entry to 0.

pub fn address(&self) -> PhysicalAddress[src]

Physical memory address referenced by this entry.

pub fn set_address(&mut self, address: PhysicalAddress) -> &mut Self[src]

Set the physical memory address of this entry.

pub fn avail(&self) -> u8[src]

Bits available to operating system.

pub fn set_avail(&mut self, val: u8) -> &mut Self[src]

Set available bits.

pub fn bit(&self, bit: Bit) -> bool[src]

Whether a certain bit is set.

pub fn set_bit(&mut self, bit: Bit) -> &mut Self[src]

Set a bit.

pub fn unset_bit(&mut self, bit: Bit) -> &mut Self[src]

Unset a bit.

Trait Implementations

impl Debug for Entry[src]

impl Copy for Entry[src]

impl Clone for Entry[src]

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

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Send for Entry

impl Sync for Entry

Blanket Implementations

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> From for T[src]

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]