Struct CpuIdResult  
#[repr(C)]pub struct CpuIdResult {
    pub eax: u32,
    pub ebx: u32,
    pub ecx: u32,
    pub edx: u32,
}Expand description
Low-level data-structure to store result of cpuid instruction.
Fields§
§eax: u32Return value EAX register
ebx: u32Return value EBX register
ecx: u32Return value ECX register
edx: u32Return value EDX register
Implementations§
§impl CpuIdResult
 
impl CpuIdResult
Trait Implementations§
§impl Clone for CpuIdResult
 
impl Clone for CpuIdResult
§fn clone(&self) -> CpuIdResult
 
fn clone(&self) -> CpuIdResult
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from 
source. Read more§impl Debug for CpuIdResult
 
impl Debug for CpuIdResult
§impl PartialEq for CpuIdResult
 
impl PartialEq for CpuIdResult
impl Copy for CpuIdResult
impl Eq for CpuIdResult
impl StructuralPartialEq for CpuIdResult
Auto Trait Implementations§
impl Freeze for CpuIdResult
impl RefUnwindSafe for CpuIdResult
impl Send for CpuIdResult
impl Sync for CpuIdResult
impl Unpin for CpuIdResult
impl UnwindSafe for CpuIdResult
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
 
impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
 
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more