#[repr(C)]pub struct pt_cpu {
pub vendor: pt_cpu_vendor,
pub family: u16,
pub model: u8,
pub stepping: u8,
}Expand description
A cpu identifier.
Fields§
§vendor: pt_cpu_vendorThe cpu vendor.
family: u16The cpu family.
model: u8The cpu model.
stepping: u8The stepping.
Trait Implementations§
impl Copy for pt_cpu
impl Eq for pt_cpu
impl StructuralPartialEq for pt_cpu
Auto Trait Implementations§
impl Freeze for pt_cpu
impl RefUnwindSafe for pt_cpu
impl Send for pt_cpu
impl Sync for pt_cpu
impl Unpin for pt_cpu
impl UnwindSafe for pt_cpu
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