Struct minidump_common::format::X86CpuInfo
source · [−]pub struct X86CpuInfo {
pub vendor_id: [u32; 3],
pub version_information: u32,
pub feature_information: u32,
pub amd_extended_cpu_features: u32,
}Expand description
x86-specific CPU information derived from the cpuid instruction
This struct matches the definition of the struct of the same name from minidumpapiset.h,
which is contained within the CPU_INFORMATION union.
Fields
vendor_id: [u32; 3]version_information: u32feature_information: u32amd_extended_cpu_features: u32Trait Implementations
sourceimpl Clone for X86CpuInfo
impl Clone for X86CpuInfo
sourcefn clone(&self) -> X86CpuInfo
fn clone(&self) -> X86CpuInfo
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for X86CpuInfo
impl Debug for X86CpuInfo
sourceimpl<'a> TryFromCtx<'a, Endian, [u8]> for X86CpuInfo where
X86CpuInfo: 'a,
impl<'a> TryFromCtx<'a, Endian, [u8]> for X86CpuInfo where
X86CpuInfo: 'a,
Auto Trait Implementations
impl RefUnwindSafe for X86CpuInfo
impl Send for X86CpuInfo
impl Sync for X86CpuInfo
impl Unpin for X86CpuInfo
impl UnwindSafe for X86CpuInfo
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more