Struct ThreadContextX86

Source
#[repr(C)]
pub struct ThreadContextX86 {
Show 25 fields pub context_flags: u32, pub dr0: u32, pub dr1: u32, pub dr2: u32, pub dr3: u32, pub dr6: u32, pub dr7: u32, pub float_save: FloatingSaveArea32, pub seg_gs: u32, pub seg_fs: u32, pub seg_es: u32, pub seg_ds: u32, pub edi: u32, pub esi: u32, pub ebx: u32, pub edx: u32, pub ecx: u32, pub eax: u32, pub ebp: u32, pub eip: u32, pub seg_cs: u32, pub eflags: u32, pub esp: u32, pub seg_ss: u32, pub extended_registers: [u8; 512],
}
Expand description

The context of an Intel X86 thread.

Fields§

§context_flags: u32§dr0: u32§dr1: u32§dr2: u32§dr3: u32§dr6: u32§dr7: u32§float_save: FloatingSaveArea32§seg_gs: u32§seg_fs: u32§seg_es: u32§seg_ds: u32§edi: u32§esi: u32§ebx: u32§edx: u32§ecx: u32§eax: u32§ebp: u32§eip: u32§seg_cs: u32§eflags: u32§esp: u32§seg_ss: u32§extended_registers: [u8; 512]

Trait Implementations§

Source§

impl Debug for ThreadContextX86

Source§

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

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

impl Default for ThreadContextX86

Source§

fn default() -> Self

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

impl Display for ThreadContextX86

Source§

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

Formats the value using the given formatter. Read more

Auto Trait Implementations§

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> 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> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. 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.