pub struct CpuidResult {
pub eax: u32,
pub ebx: u32,
pub ecx: u32,
pub edx: u32,
}Fields§
§eax: u32§ebx: u32§ecx: u32§edx: u32Trait Implementations§
Source§impl Clone for CpuidResult
impl Clone for CpuidResult
Source§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 moreSource§impl Debug for CpuidResult
impl Debug for CpuidResult
Source§impl Default for CpuidResult
impl Default for CpuidResult
Source§fn default() -> CpuidResult
fn default() -> CpuidResult
Returns the “default value” for a type. Read more
impl Copy 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 UnsafeUnpin 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