Struct rstubs::arch::int::idt::PageFaultError

source ·
#[repr(transparent)]
pub struct PageFaultError(u32);
Expand description

Error code for page faults

Tuple Fields§

§0: u32

Implementations§

source§

impl PageFaultError

source

pub const fn new() -> Self

Creates a new default initialized bitfield.

source

const PROTECTION_BITS: usize = 1usize

source

const PROTECTION_OFFSET: usize = 0usize

source

pub const fn with_protection(self, value: bool) -> Self

If this flag is set, the page fault was caused by a page-protection violation, else the page fault was caused by a not-present page.

Bits: 0..1

source

pub const fn protection(&self) -> bool

If this flag is set, the page fault was caused by a page-protection violation, else the page fault was caused by a not-present page.

Bits: 0..1

source

pub fn set_protection(&mut self, value: bool)

If this flag is set, the page fault was caused by a page-protection violation, else the page fault was caused by a not-present page.

Bits: 0..1

source

const WRITE_BITS: usize = 1usize

source

const WRITE_OFFSET: usize = 1usize

source

pub const fn with_write(self, value: bool) -> Self

If this flag is set, the memory access that caused the page fault was a write. Else the access that caused the page fault is a memory read. This bit does not necessarily indicate the cause of the page fault was a read or write violation.

Bits: 1..2

source

pub const fn write(&self) -> bool

If this flag is set, the memory access that caused the page fault was a write. Else the access that caused the page fault is a memory read. This bit does not necessarily indicate the cause of the page fault was a read or write violation.

Bits: 1..2

source

pub fn set_write(&mut self, value: bool)

If this flag is set, the memory access that caused the page fault was a write. Else the access that caused the page fault is a memory read. This bit does not necessarily indicate the cause of the page fault was a read or write violation.

Bits: 1..2

source

const USER_BITS: usize = 1usize

source

const USER_OFFSET: usize = 2usize

source

pub const fn with_user(self, value: bool) -> Self

If this flag is set, an access in user mode (CPL=3) caused the page fault. Else an access in supervisor mode (CPL=0, 1, or 2) caused the page fault. This bit does not necessarily indicate the cause of the page fault was a privilege violation.

Bits: 2..3

source

pub const fn user(&self) -> bool

If this flag is set, an access in user mode (CPL=3) caused the page fault. Else an access in supervisor mode (CPL=0, 1, or 2) caused the page fault. This bit does not necessarily indicate the cause of the page fault was a privilege violation.

Bits: 2..3

source

pub fn set_user(&mut self, value: bool)

If this flag is set, an access in user mode (CPL=3) caused the page fault. Else an access in supervisor mode (CPL=0, 1, or 2) caused the page fault. This bit does not necessarily indicate the cause of the page fault was a privilege violation.

Bits: 2..3

source

const TABLE_BITS: usize = 1usize

source

const TABLE_OFFSET: usize = 3usize

source

pub const fn with_table(self, value: bool) -> Self

If this flag is set, the page fault is a result of the processor reading a 1 from a reserved field within a page-translation-table entry.

Bits: 3..4

source

pub const fn table(&self) -> bool

If this flag is set, the page fault is a result of the processor reading a 1 from a reserved field within a page-translation-table entry.

Bits: 3..4

source

pub fn set_table(&mut self, value: bool)

If this flag is set, the page fault is a result of the processor reading a 1 from a reserved field within a page-translation-table entry.

Bits: 3..4

source

const INSTRUCTION_BITS: usize = 1usize

source

const INSTRUCTION_OFFSET: usize = 4usize

source

pub const fn with_instruction(self, value: bool) -> Self

If this flag is set, it indicates that the access that caused the page fault was an instruction fetch.

Bits: 4..5

source

pub const fn instruction(&self) -> bool

If this flag is set, it indicates that the access that caused the page fault was an instruction fetch.

Bits: 4..5

source

pub fn set_instruction(&mut self, value: bool)

If this flag is set, it indicates that the access that caused the page fault was an instruction fetch.

Bits: 4..5

Trait Implementations§

source§

impl Clone for PageFaultError

source§

fn clone(&self) -> PageFaultError

Returns a copy of the value. Read more
1.0.0§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for PageFaultError

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for PageFaultError

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl From<PageFaultError> for u32

source§

fn from(v: PageFaultError) -> u32

Converts to this type from the input type.
source§

impl From<u32> for PageFaultError

source§

fn from(v: u32) -> Self

Converts to this type from the input type.
source§

impl Copy for PageFaultError

Auto Trait Implementations§

§

impl RefUnwindSafe for PageFaultError

§

impl Send for PageFaultError

§

impl Sync for PageFaultError

§

impl Unpin for PageFaultError

§

impl UnwindSafe for PageFaultError

Blanket Implementations§

§

impl<T> Any for T
where T: 'static + ?Sized,

§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
§

impl<T> Borrow<T> for T
where T: ?Sized,

§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
§

impl<T> BorrowMut<T> for T
where T: ?Sized,

§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
§

impl<T> From<T> for T

§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T, U> Into<U> for T
where U: From<T>,

§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of [From]<T> for U chooses to do.

§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.