[]Struct x86::bits64::paging::PTFlags

#[repr(transparent)]
pub struct PTFlags { /* fields omitted */ }

PT Entry bits description.

Methods

impl PTFlags

pub const P: PTFlags

Present; must be 1 to map a 4-KByte page.

pub const RW: PTFlags

Read/write; if 0, writes may not be allowed to the 4-KByte region controlled by this entry

pub const US: PTFlags

User/supervisor; user-mode accesses are not allowed to the 4-KByte region controlled by this entry.

pub const PWT: PTFlags

Page-level write-through.

pub const PCD: PTFlags

Page-level cache disable.

pub const A: PTFlags

Accessed; indicates whether software has accessed the 4-KByte page

pub const D: PTFlags

Dirty; indicates whether software has written to the 4-KByte page referenced by this entry.

pub const G: PTFlags

Global; if CR4.PGE = 1, determines whether the translation is global (see Section 4.10); ignored otherwise

pub const XD: PTFlags

If IA32_EFER.NXE = 1, execute-disable If 1, instruction fetches are not allowed from the 512-GByte region.

pub const fn empty() -> PTFlags

Returns an empty set of flags

pub const fn all() -> PTFlags

Returns the set containing all flags.

pub const fn bits(&self) -> u64

Returns the raw value of the flags currently stored.

pub fn from_bits(bits: u64) -> Option<PTFlags>

Convert from underlying bit representation, unless that representation contains bits that do not correspond to a flag.

pub const fn from_bits_truncate(bits: u64) -> PTFlags

Convert from underlying bit representation, dropping any bits that do not correspond to flags.

pub const fn is_empty(&self) -> bool

Returns true if no flags are currently stored.

pub const fn is_all(&self) -> bool

Returns true if all flags are currently set.

pub const fn intersects(&self, other: PTFlags) -> bool

Returns true if there are flags common to both self and other.

pub const fn contains(&self, other: PTFlags) -> bool

Returns true all of the flags in other are contained within self.

pub fn insert(&mut self, other: PTFlags)

Inserts the specified flags in-place.

pub fn remove(&mut self, other: PTFlags)

Removes the specified flags in-place.

pub fn toggle(&mut self, other: PTFlags)

Toggles the specified flags in-place.

pub fn set(&mut self, other: PTFlags, value: bool)

Inserts or removes the specified flags depending on the passed value.

Trait Implementations

impl Debug for PTFlags

impl PartialEq<PTFlags> for PTFlags

impl Eq for PTFlags

impl Ord for PTFlags

fn max(self, other: Self) -> Self1.21.0[src]

Compares and returns the maximum of two values. Read more

fn min(self, other: Self) -> Self1.21.0[src]

Compares and returns the minimum of two values. Read more

fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

Restrict a value to a certain interval. Read more

impl PartialOrd<PTFlags> for PTFlags

impl Sub<PTFlags> for PTFlags

type Output = PTFlags

The resulting type after applying the - operator.

fn sub(self, other: PTFlags) -> PTFlags

Returns the set difference of the two sets of flags.

impl SubAssign<PTFlags> for PTFlags

fn sub_assign(&mut self, other: PTFlags)

Disables all flags enabled in the set.

impl Not for PTFlags

type Output = PTFlags

The resulting type after applying the ! operator.

fn not(self) -> PTFlags

Returns the complement of this set of flags.

impl BitAnd<PTFlags> for PTFlags

type Output = PTFlags

The resulting type after applying the & operator.

fn bitand(self, other: PTFlags) -> PTFlags

Returns the intersection between the two sets of flags.

impl BitOr<PTFlags> for PTFlags

type Output = PTFlags

The resulting type after applying the | operator.

fn bitor(self, other: PTFlags) -> PTFlags

Returns the union of the two sets of flags.

impl BitXor<PTFlags> for PTFlags

type Output = PTFlags

The resulting type after applying the ^ operator.

fn bitxor(self, other: PTFlags) -> PTFlags

Returns the left flags, but with all the right flags toggled.

impl BitAndAssign<PTFlags> for PTFlags

fn bitand_assign(&mut self, other: PTFlags)

Disables all flags disabled in the set.

impl BitOrAssign<PTFlags> for PTFlags

fn bitor_assign(&mut self, other: PTFlags)

Adds the set of flags.

impl BitXorAssign<PTFlags> for PTFlags

fn bitxor_assign(&mut self, other: PTFlags)

Toggles the set of flags.

impl Hash for PTFlags

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0[src]

Feeds a slice of this type into the given [Hasher]. Read more

impl Extend<PTFlags> for PTFlags

impl FromIterator<PTFlags> for PTFlags

impl Copy for PTFlags

impl Octal for PTFlags

impl Binary for PTFlags

impl LowerHex for PTFlags

impl UpperHex for PTFlags

impl Clone for PTFlags

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Unpin for PTFlags

impl Send for PTFlags

impl Sync for PTFlags

Blanket Implementations

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryInto<U> 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> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]