Struct x86defs::RFlags

source ·
pub struct RFlags(/* private fields */);

Implementations§

source§

impl RFlags

source

pub const fn new() -> Self

Creates a new default initialized bitfield.

source

pub const fn from_bits(bits: u64) -> Self

Convert from bits.

source

pub const fn into_bits(self) -> u64

Convert into bits.

source

pub const fn carry(&self) -> bool

Bits: 0..1

source

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

Bits: 0..1

source

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

Bits: 0..1

source

pub const fn parity(&self) -> bool

Bits: 2..3

source

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

Bits: 2..3

source

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

Bits: 2..3

source

pub const fn adjust(&self) -> bool

Bits: 4..5

source

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

Bits: 4..5

source

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

Bits: 4..5

source

pub const fn zero(&self) -> bool

Bits: 6..7

source

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

Bits: 6..7

source

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

Bits: 6..7

source

pub const fn sign(&self) -> bool

Bits: 7..8

source

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

Bits: 7..8

source

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

Bits: 7..8

source

pub const fn trap(&self) -> bool

Bits: 8..9

source

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

Bits: 8..9

source

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

Bits: 8..9

source

pub const fn interrupt_enable(&self) -> bool

Bits: 9..10

source

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

Bits: 9..10

source

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

Bits: 9..10

source

pub const fn direction(&self) -> bool

Bits: 10..11

source

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

Bits: 10..11

source

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

Bits: 10..11

source

pub const fn overflow(&self) -> bool

Bits: 11..12

source

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

Bits: 11..12

source

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

Bits: 11..12

source

pub const fn io_privilege_level(&self) -> u8

Bits: 12..14

source

pub const fn with_io_privilege_level(self, value: u8) -> Self

Bits: 12..14

source

pub fn set_io_privilege_level(&mut self, value: u8)

Bits: 12..14

source

pub const fn nested_task(&self) -> bool

Bits: 14..15

source

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

Bits: 14..15

source

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

Bits: 14..15

source

pub const fn mode(&self) -> bool

Bits: 15..16

source

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

Bits: 15..16

source

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

Bits: 15..16

source

pub const fn resume(&self) -> bool

Bits: 16..17

source

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

Bits: 16..17

source

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

Bits: 16..17

source

pub const fn virtual_8086_mode(&self) -> bool

Bits: 17..18

source

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

Bits: 17..18

source

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

Bits: 17..18

source

pub const fn alignment_check(&self) -> bool

Bits: 18..19

source

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

Bits: 18..19

source

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

Bits: 18..19

source

pub const fn virtual_interrupt(&self) -> bool

Bits: 19..20

source

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

Bits: 19..20

source

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

Bits: 19..20

source

pub const fn virtual_interrupt_pending(&self) -> bool

Bits: 20..21

source

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

Bits: 20..21

source

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

Bits: 20..21

source

pub const fn cpuid_allowed(&self) -> bool

Bits: 21..22

source

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

Bits: 21..22

source

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

Bits: 21..22

source

pub const fn aes_key_schedule_loaded(&self) -> bool

Bits: 30..31

source

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

Bits: 30..31

source

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

Bits: 30..31

Trait Implementations§

source§

impl<'a> Arbitrary<'a> for RFlags

source§

fn arbitrary(u: &mut Unstructured<'a>) -> Result<Self>

Generate an arbitrary value of Self from the given unstructured data. Read more
§

fn arbitrary_take_rest(u: Unstructured<'a>) -> Result<Self, Error>

Generate an arbitrary value of Self from the entirety of the given unstructured data. Read more
§

fn size_hint(depth: usize) -> (usize, Option<usize>)

Get a size hint for how many bytes out of an Unstructured this type needs to construct itself. Read more
source§

impl BitAnd for RFlags

source§

type Output = RFlags

The resulting type after applying the & operator.
source§

fn bitand(self, rhs: RFlags) -> Self::Output

Performs the & operation. Read more
source§

impl Clone for RFlags

source§

fn clone(&self) -> RFlags

Returns a copy of the value. Read more
1.0.0 · source§

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

Performs copy-assignment from source. Read more
source§

impl Debug for RFlags

source§

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

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

impl Default for RFlags

source§

fn default() -> Self

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

impl From<RFlags> for u64

source§

fn from(v: RFlags) -> u64

Converts to this type from the input type.
source§

impl From<u64> for RFlags

source§

fn from(v: u64) -> Self

Converts to this type from the input type.
source§

impl PartialEq for RFlags

source§

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

Tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Copy for RFlags

source§

impl StructuralPartialEq for RFlags

Auto Trait Implementations§

§

impl Freeze for RFlags

§

impl RefUnwindSafe for RFlags

§

impl Send for RFlags

§

impl Sync for RFlags

§

impl Unpin for RFlags

§

impl UnwindSafe for RFlags

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

source§

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

Mutably borrows from an owned value. Read more
source§

impl<T> CloneToUninit for T
where T: Clone,

source§

unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

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

source§

fn into(self) -> U

Calls U::from(self).

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

source§

impl<T> ToOwned for T
where T: Clone,

source§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

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

source§

type Error = Infallible

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

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

Performs the conversion.
source§

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

source§

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

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

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

Performs the conversion.