[]Struct x86::bits32::eflags::EFlags

pub struct EFlags { /* fields omitted */ }

The EFLAGS register.

Methods

impl EFlags

pub const FLAGS_ID: EFlags

ID Flag (ID)

pub const FLAGS_VIP: EFlags

Virtual Interrupt Pending (VIP)

pub const FLAGS_VIF: EFlags

Virtual Interrupt Flag (VIF)

pub const FLAGS_AC: EFlags

Alignment Check (AC)

pub const FLAGS_VM: EFlags

Virtual-8086 Mode (VM)

pub const FLAGS_RF: EFlags

Resume Flag (RF)

pub const FLAGS_NT: EFlags

Nested Task (NT)

pub const FLAGS_IOPL0: EFlags

I/O Privilege Level (IOPL) 0

pub const FLAGS_IOPL1: EFlags

I/O Privilege Level (IOPL) 1

pub const FLAGS_IOPL2: EFlags

I/O Privilege Level (IOPL) 2

pub const FLAGS_IOPL3: EFlags

I/O Privilege Level (IOPL) 3

pub const FLAGS_OF: EFlags

Overflow Flag (OF)

pub const FLAGS_DF: EFlags

Direction Flag (DF)

pub const FLAGS_IF: EFlags

Interrupt Enable Flag (IF)

pub const FLAGS_TF: EFlags

Trap Flag (TF)

pub const FLAGS_SF: EFlags

Sign Flag (SF)

pub const FLAGS_ZF: EFlags

Zero Flag (ZF)

pub const FLAGS_AF: EFlags

Auxiliary Carry Flag (AF)

pub const FLAGS_PF: EFlags

Parity Flag (PF)

pub const FLAGS_A1: EFlags

Bit 1 is always 1.

pub const FLAGS_CF: EFlags

Carry Flag (CF)

pub fn empty() -> EFlags

Returns an empty set of flags.

pub fn all() -> EFlags

Returns the set containing all flags.

pub fn bits(&self) -> u32

Returns the raw value of the flags currently stored.

pub fn from_bits(bits: u32) -> Option<EFlags>

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

pub fn from_bits_truncate(bits: u32) -> EFlags

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: EFlags) -> bool

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

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

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

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

Inserts the specified flags in-place.

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

Removes the specified flags in-place.

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

Toggles the specified flags in-place.

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

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

impl EFlags[src]

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

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

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

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

Trait Implementations

impl Copy for EFlags

impl Debug for EFlags

impl PartialEq<EFlags> for EFlags

impl Eq for EFlags

impl Ord for EFlags

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

Compares and returns the maximum of two values. Read more

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

Compares and returns the minimum of two values. Read more

default 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<EFlags> for EFlags

impl Hash for EFlags

default 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 Sub<EFlags> for EFlags

type Output = EFlags

The resulting type after applying the - operator.

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

Returns the set difference of the two sets of flags.

impl SubAssign<EFlags> for EFlags

fn sub_assign(&mut self, other: EFlags)

Disables all flags enabled in the set.

impl Not for EFlags

type Output = EFlags

The resulting type after applying the ! operator.

fn not(self) -> EFlags

Returns the complement of this set of flags.

impl BitAnd<EFlags> for EFlags

type Output = EFlags

The resulting type after applying the & operator.

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

Returns the intersection between the two sets of flags.

impl BitOr<EFlags> for EFlags

type Output = EFlags

The resulting type after applying the | operator.

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

Returns the union of the two sets of flags.

impl BitXor<EFlags> for EFlags

type Output = EFlags

The resulting type after applying the ^ operator.

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

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

impl BitAndAssign<EFlags> for EFlags

fn bitand_assign(&mut self, other: EFlags)

Disables all flags disabled in the set.

impl BitOrAssign<EFlags> for EFlags

fn bitor_assign(&mut self, other: EFlags)

Adds the set of flags.

impl BitXorAssign<EFlags> for EFlags

fn bitxor_assign(&mut self, other: EFlags)

Toggles the set of flags.

impl Extend<EFlags> for EFlags

impl FromIterator<EFlags> for EFlags

impl Octal for EFlags

impl Binary for EFlags

impl LowerHex for EFlags

impl UpperHex for EFlags

impl Clone for EFlags

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

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Send for EFlags

impl Sync for EFlags

Blanket Implementations

impl<T> From for T[src]

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

type Error = Infallible

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

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]