Struct vm_event_regs_x86

Source
#[repr(C)]
pub struct vm_event_regs_x86 {
Show 54 fields 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 rflags: u64, pub dr6: u64, pub dr7: u64, pub rip: u64, pub cr0: u64, pub cr2: u64, pub cr3: u64, pub cr4: u64, pub sysenter_cs: u64, pub sysenter_esp: u64, pub sysenter_eip: u64, pub msr_efer: u64, pub msr_star: u64, pub msr_lstar: u64, pub gdtr_base: u64, pub npt_base: u64, pub vmtrace_pos: u64, pub cs_base: u32, pub ss_base: u32, pub ds_base: u32, pub es_base: u32, pub fs_base: u64, pub gs_base: u64, pub cs: vm_event_x86_selector_reg, pub ss: vm_event_x86_selector_reg, pub ds: vm_event_x86_selector_reg, pub es: vm_event_x86_selector_reg, pub fs: vm_event_x86_selector_reg, pub gs: vm_event_x86_selector_reg, pub shadow_gs: u64, pub gdtr_limit: u16, pub cs_sel: u16, pub ss_sel: u16, pub ds_sel: u16, pub es_sel: u16, pub fs_sel: u16, pub gs_sel: u16, pub _pad: u16,
}

Fields§

§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§rflags: u64§dr6: u64§dr7: u64§rip: u64§cr0: u64§cr2: u64§cr3: u64§cr4: u64§sysenter_cs: u64§sysenter_esp: u64§sysenter_eip: u64§msr_efer: u64§msr_star: u64§msr_lstar: u64§gdtr_base: u64§npt_base: u64§vmtrace_pos: u64§cs_base: u32§ss_base: u32§ds_base: u32§es_base: u32§fs_base: u64§gs_base: u64§cs: vm_event_x86_selector_reg§ss: vm_event_x86_selector_reg§ds: vm_event_x86_selector_reg§es: vm_event_x86_selector_reg§fs: vm_event_x86_selector_reg§gs: vm_event_x86_selector_reg§shadow_gs: u64§gdtr_limit: u16§cs_sel: u16§ss_sel: u16§ds_sel: u16§es_sel: u16§fs_sel: u16§gs_sel: u16§_pad: u16

Trait Implementations§

Source§

impl Clone for vm_event_regs_x86

Source§

fn clone(&self) -> vm_event_regs_x86

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
Source§

impl Debug for vm_event_regs_x86

Source§

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

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

impl Default for vm_event_regs_x86

Source§

fn default() -> vm_event_regs_x86

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

impl Copy for vm_event_regs_x86

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.