WHEA_X86_REGISTER_STATE

Struct WHEA_X86_REGISTER_STATE 

#[repr(C, packed(1))]
pub struct WHEA_X86_REGISTER_STATE {
Show 25 fields pub Eax: u32, pub Ebx: u32, pub Ecx: u32, pub Edx: u32, pub Esi: u32, pub Edi: u32, pub Ebp: u32, pub Esp: u32, pub Cs: u16, pub Ds: u16, pub Ss: u16, pub Es: u16, pub Fs: u16, pub Gs: u16, pub Eflags: u32, pub Eip: u32, pub Cr0: u32, pub Cr1: u32, pub Cr2: u32, pub Cr3: u32, pub Cr4: u32, pub Gdtr: u64, pub Idtr: u64, pub Ldtr: u16, pub Tr: u16,
}

Fields§

§Eax: u32§Ebx: u32§Ecx: u32§Edx: u32§Esi: u32§Edi: u32§Ebp: u32§Esp: u32§Cs: u16§Ds: u16§Ss: u16§Es: u16§Fs: u16§Gs: u16§Eflags: u32§Eip: u32§Cr0: u32§Cr1: u32§Cr2: u32§Cr3: u32§Cr4: u32§Gdtr: u64§Idtr: u64§Ldtr: u16§Tr: u16

Trait Implementations§

§

impl Clone for WHEA_X86_REGISTER_STATE

§

fn clone(&self) -> WHEA_X86_REGISTER_STATE

Returns a duplicate 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 WHEA_X86_REGISTER_STATE

§

fn default() -> WHEA_X86_REGISTER_STATE

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

impl Copy for WHEA_X86_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, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. 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.