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

pub enum UnmapError {
    ParentEntryHugePage,
    PageNotMapped,
    InvalidFrameAddress(PhysAddr),
}

An error indicating that an unmap call failed.

Variants

An upper level page table entry has the HUGE_PAGE flag set, which means that the given page is part of a huge page and can't be freed individually.

The given page is not mapped to a physical frame.

The page table entry for the given page points to an invalid physical address.

Trait Implementations

impl Debug for UnmapError
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for UnmapError

impl Sync for UnmapError