pub struct Cluster {
pub id: u32,
pub frequency: u64,
pub cpuid: u32,
}
Fields§
§id: u32
Index of the first logical processor in the cluster
frequency: u64
Clock rate (non-Turbo) of the cores in the cluster, in Hz
cpuid: u32
Either value of CPUID leaf 1 EAX register on x86 OR value of Main ID Register on ARM
Auto Trait Implementations§
impl Freeze for Cluster
impl RefUnwindSafe for Cluster
impl Send for Cluster
impl Sync for Cluster
impl Unpin for Cluster
impl UnwindSafe for Cluster
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