[]Struct x86::bits64::rflags::RFlags

pub struct RFlags { /* fields omitted */ }

Methods

impl RFlags

pub const FLAGS_ID: RFlags

ID Flag (ID)

pub const FLAGS_VIP: RFlags

Virtual Interrupt Pending (VIP)

pub const FLAGS_VIF: RFlags

Virtual Interrupt Flag (VIF)

pub const FLAGS_AC: RFlags

Alignment Check (AC)

pub const FLAGS_VM: RFlags

Virtual-8086 Mode (VM)

pub const FLAGS_RF: RFlags

Resume Flag (RF)

pub const FLAGS_NT: RFlags

Nested Task (NT)

pub const FLAGS_IOPL0: RFlags

I/O Privilege Level (IOPL) 0

pub const FLAGS_IOPL1: RFlags

I/O Privilege Level (IOPL) 1

pub const FLAGS_IOPL2: RFlags

I/O Privilege Level (IOPL) 2

pub const FLAGS_IOPL3: RFlags

I/O Privilege Level (IOPL) 3

pub const FLAGS_OF: RFlags

Overflow Flag (OF)

pub const FLAGS_DF: RFlags

Direction Flag (DF)

pub const FLAGS_IF: RFlags

Interrupt Enable Flag (IF)

pub const FLAGS_TF: RFlags

Trap Flag (TF)

pub const FLAGS_SF: RFlags

Sign Flag (SF)

pub const FLAGS_ZF: RFlags

Zero Flag (ZF)

pub const FLAGS_AF: RFlags

Auxiliary Carry Flag (AF)

pub const FLAGS_PF: RFlags

Parity Flag (PF)

pub const FLAGS_A1: RFlags

Bit 1 is always 1.

pub const FLAGS_CF: RFlags

Carry Flag (CF)

pub fn empty() -> RFlags

Returns an empty set of flags.

pub fn all() -> RFlags

Returns the set containing all flags.

pub fn bits(&self) -> u64

Returns the raw value of the flags currently stored.

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

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

pub fn from_bits_truncate(bits: u64) -> RFlags

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

pub fn is_empty(&self) -> bool

Returns true if no flags are currently stored.

pub fn is_all(&self) -> bool

Returns true if all flags are currently set.

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

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

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

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

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

Inserts the specified flags in-place.

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

Removes the specified flags in-place.

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

Toggles the specified flags in-place.

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

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

impl RFlags[src]

pub const fn new() -> RFlags[src]

Creates a new Flags entry. Ensures bit 1 is set.

pub const fn from_priv(iopl: Ring) -> RFlags[src]

Creates a new Flags with the given I/O privilege level.

pub const fn from_raw(bits: u64) -> RFlags[src]

Trait Implementations

impl Copy for RFlags

impl Clone for RFlags

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

Performs copy-assignment from source. Read more

impl PartialEq<RFlags> for RFlags

impl Eq for RFlags

impl Ord for RFlags

fn max(self, other: Self) -> Self
1.21.0
[src]

Compares and returns the maximum of two values. Read more

fn min(self, other: Self) -> Self
1.21.0
[src]

Compares and returns the minimum of two values. Read more

impl PartialOrd<RFlags> for RFlags

impl Debug for RFlags

impl Sub<RFlags> for RFlags

type Output = RFlags

The resulting type after applying the - operator.

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

Returns the set difference of the two sets of flags.

impl SubAssign<RFlags> for RFlags

fn sub_assign(&mut self, other: RFlags)

Disables all flags enabled in the set.

impl Not for RFlags

type Output = RFlags

The resulting type after applying the ! operator.

fn not(self) -> RFlags

Returns the complement of this set of flags.

impl BitAnd<RFlags> for RFlags

type Output = RFlags

The resulting type after applying the & operator.

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

Returns the intersection between the two sets of flags.

impl BitOr<RFlags> for RFlags

type Output = RFlags

The resulting type after applying the | operator.

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

Returns the union of the two sets of flags.

impl BitXor<RFlags> for RFlags

type Output = RFlags

The resulting type after applying the ^ operator.

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

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

impl BitAndAssign<RFlags> for RFlags

fn bitand_assign(&mut self, other: RFlags)

Disables all flags disabled in the set.

impl BitOrAssign<RFlags> for RFlags

fn bitor_assign(&mut self, other: RFlags)

Adds the set of flags.

impl BitXorAssign<RFlags> for RFlags

fn bitxor_assign(&mut self, other: RFlags)

Toggles the set of flags.

impl Hash for RFlags

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<RFlags> for RFlags

impl FromIterator<RFlags> for RFlags

impl Octal for RFlags

impl Binary for RFlags

impl LowerHex for RFlags

impl UpperHex for RFlags

Auto Trait Implementations

impl Send for RFlags

impl Sync for RFlags

Blanket Implementations

impl<T> From for T[src]

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

type Error = !

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

The type returned in the event of a conversion error.

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

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

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

The type returned in the event of a conversion error.

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

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

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

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