Enum x86_64::structures::paging::MapToError[][src]

pub enum MapToError {
    FrameAllocationFailed,
    ParentEntryHugePage,
    PageAlreadyMapped,
}

This error is returned from map_to and similar methods.

Variants

An additional frame was needed for the mapping process, but the frame allocator returned None.

An upper level page table entry has the HUGE_PAGE flag set, which means that the given page is part of an already mapped huge page.

The given page is already mapped to a physical frame.

Trait Implementations

impl Debug for MapToError
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for MapToError

impl Sync for MapToError