[][src]Struct mmu::amd64::RecursiveMapper

pub struct RecursiveMapper<AllocFrame, TranslateAddress> where
    AllocFrame: FnMut() -> Result<PhysicalAddress>,
    TranslateAddress: FnMut(PhysicalAddress) -> VirtualAddress
{ /* fields omitted */ }

Provides access to page table entries.

Methods

impl<AllocFrame, TranslateAddress> RecursiveMapper<AllocFrame, TranslateAddress> where
    AllocFrame: FnMut() -> Result<PhysicalAddress>,
    TranslateAddress: FnMut(PhysicalAddress) -> VirtualAddress
[src]

pub unsafe fn new(
    pt4: *mut PageTable,
    alloc_frame: AllocFrame,
    translate_address: TranslateAddress
) -> Self
[src]

Create a new RecursiveMapper object.

pub unsafe fn entry(
    &mut self,
    virt_addr: VirtualAddress,
    level: u8
) -> Result<&'static mut Entry>
[src]

Get the page table entry for a virtual address.

Auto Trait Implementations

impl<AllocFrame, TranslateAddress> !Send for RecursiveMapper<AllocFrame, TranslateAddress>

impl<AllocFrame, TranslateAddress> !Sync for RecursiveMapper<AllocFrame, TranslateAddress>

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]