pub struct CpuidResult {
pub eax: u32,
pub ebx: u32,
pub ecx: u32,
pub edx: u32,
}
Fields§
§eax: u32
§ebx: u32
§ecx: u32
§edx: u32
Trait Implementations§
Source§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
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