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

pub enum FrameError {
    FrameNotPresent,
    HugeFrame,
}

The error returned by the PageTableEntry::frame method.

Variants

The entry does not have the PRESENT flag set, so it isn't currently mapped to a frame.

The entry does have the HUGE_PAGE flag set. The frame method has a standard 4KiB frame as return type, so a huge frame can't be returned.

Trait Implementations

impl Debug for FrameError
[src]

Formats the value using the given formatter. Read more

impl Clone for FrameError
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for FrameError
[src]

impl PartialEq for FrameError
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

impl Send for FrameError

impl Sync for FrameError