Struct windows::Win32::System::Diagnostics::Debug::CONTEXT

#[repr(C)]
pub struct CONTEXT {
Show 46 fields pub P1Home: u64, pub P2Home: u64, pub P3Home: u64, pub P4Home: u64, pub P5Home: u64, pub P6Home: u64, pub ContextFlags: CONTEXT_FLAGS, pub MxCsr: u32, pub SegCs: u16, pub SegDs: u16, pub SegEs: u16, pub SegFs: u16, pub SegGs: u16, pub SegSs: u16, pub EFlags: u32, pub Dr0: u64, pub Dr1: u64, pub Dr2: u64, pub Dr3: u64, pub Dr6: u64, pub Dr7: u64, pub Rax: u64, pub Rcx: u64, pub Rdx: u64, pub Rbx: u64, pub Rsp: u64, pub Rbp: u64, pub Rsi: u64, pub Rdi: u64, pub R8: u64, pub R9: u64, pub R10: u64, pub R11: u64, pub R12: u64, pub R13: u64, pub R14: u64, pub R15: u64, pub Rip: u64, pub Anonymous: CONTEXT_0, pub VectorRegister: [M128A; 26], pub VectorControl: u64, pub DebugControl: u64, pub LastBranchToRip: u64, pub LastBranchFromRip: u64, pub LastExceptionToRip: u64, pub LastExceptionFromRip: u64,
}

Fields§

§P1Home: u64§P2Home: u64§P3Home: u64§P4Home: u64§P5Home: u64§P6Home: u64§ContextFlags: CONTEXT_FLAGS§MxCsr: u32§SegCs: u16§SegDs: u16§SegEs: u16§SegFs: u16§SegGs: u16§SegSs: u16§EFlags: u32§Dr0: u64§Dr1: u64§Dr2: u64§Dr3: u64§Dr6: u64§Dr7: u64§Rax: u64§Rcx: u64§Rdx: u64§Rbx: u64§Rsp: u64§Rbp: u64§Rsi: u64§Rdi: u64§R8: u64§R9: u64§R10: u64§R11: u64§R12: u64§R13: u64§R14: u64§R15: u64§Rip: u64§Anonymous: CONTEXT_0§VectorRegister: [M128A; 26]§VectorControl: u64§DebugControl: u64§LastBranchToRip: u64§LastBranchFromRip: u64§LastExceptionToRip: u64§LastExceptionFromRip: u64

Trait Implementations§

§

impl Clone for CONTEXT

§

fn clone(&self) -> Self

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
§

impl Default for CONTEXT

§

fn default() -> Self

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

impl Copy for CONTEXT

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.

§

impl<T, U> Param<T, CopyType> for U
where T: TypeKind<TypeKind = CopyType> + Clone, U: TypeKind<TypeKind = CopyType> + Clone + CanInto<T>,

§

unsafe fn param(self) -> ParamValue<T>

source§

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

§

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>,

§

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>,

§

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.