windows::Wdk::System::SystemServices

Struct WHEA_X64_REGISTER_STATE

#[repr(C)]
pub struct WHEA_X64_REGISTER_STATE {
Show 35 fields pub Rax: u64, pub Rbx: u64, pub Rcx: u64, pub Rdx: u64, pub Rsi: u64, pub Rdi: u64, pub Rbp: u64, pub Rsp: 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 Cs: u16, pub Ds: u16, pub Ss: u16, pub Es: u16, pub Fs: u16, pub Gs: u16, pub Reserved: u32, pub Rflags: u64, pub Eip: u64, pub Cr0: u64, pub Cr1: u64, pub Cr2: u64, pub Cr3: u64, pub Cr4: u64, pub Cr8: u64, pub Gdtr: WHEA128A, pub Idtr: WHEA128A, pub Ldtr: u16, pub Tr: u16,
}

Fields§

§Rax: u64§Rbx: u64§Rcx: u64§Rdx: u64§Rsi: u64§Rdi: u64§Rbp: u64§Rsp: u64§R8: u64§R9: u64§R10: u64§R11: u64§R12: u64§R13: u64§R14: u64§R15: u64§Cs: u16§Ds: u16§Ss: u16§Es: u16§Fs: u16§Gs: u16§Reserved: u32§Rflags: u64§Eip: u64§Cr0: u64§Cr1: u64§Cr2: u64§Cr3: u64§Cr4: u64§Cr8: u64§Gdtr: WHEA128A§Idtr: WHEA128A§Ldtr: u16§Tr: u16

Trait Implementations§

§

impl Clone for WHEA_X64_REGISTER_STATE

§

fn clone(&self) -> WHEA_X64_REGISTER_STATE

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 Debug for WHEA_X64_REGISTER_STATE

§

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

Formats the value using the given formatter. Read more
§

impl Default for WHEA_X64_REGISTER_STATE

§

fn default() -> Self

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

impl PartialEq for WHEA_X64_REGISTER_STATE

§

fn eq(&self, other: &WHEA_X64_REGISTER_STATE) -> 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.
§

impl Copy for WHEA_X64_REGISTER_STATE

§

impl StructuralPartialEq for WHEA_X64_REGISTER_STATE

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> CloneToUninit for T
where T: Clone,

Source§

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

🔬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.