Struct raw_cpuid::CpuIdResult
source · [−]Expand description
Low-level data-structure to store result of cpuid instruction.
Fields
eax: u32
Return value EAX register
ebx: u32
Return value EBX register
ecx: u32
Return value ECX register
edx: u32
Return value EDX register
Trait Implementations
sourceimpl Clone for CpuIdResult
impl Clone for CpuIdResult
sourcefn clone(&self) -> CpuIdResult
fn clone(&self) -> CpuIdResult
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 CpuIdResult
impl Debug for CpuIdResult
sourceimpl Default for CpuIdResult
impl Default for CpuIdResult
sourcefn default() -> CpuIdResult
fn default() -> CpuIdResult
Returns the “default value” for a type. Read more
impl Copy for CpuIdResult
Auto Trait Implementations
impl RefUnwindSafe for CpuIdResult
impl Send for CpuIdResult
impl Sync for CpuIdResult
impl Unpin for CpuIdResult
impl UnwindSafe for CpuIdResult
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more