pub struct RdtMonitoringInfo<R: CpuIdReader> { /* private fields */ }
Expand description
Intel Resource Director Technology RDT (LEAF=0x0F).
Monitoring Enumeration Sub-leaf (EAX = 0FH, ECX = 0 and ECX = 1)
§Platforms
❌ AMD ✅ Intel
Implementations§
source§impl<R: CpuIdReader> RdtMonitoringInfo<R>
impl<R: CpuIdReader> RdtMonitoringInfo<R>
sourcepub fn rmid_range(&self) -> u32
pub fn rmid_range(&self) -> u32
Maximum range (zero-based) of RMID within this physical processor of all types.
sourcepub fn has_l3_monitoring(&self) -> bool
pub fn has_l3_monitoring(&self) -> bool
Supports L3 Cache Intel RDT Monitoring.
sourcepub fn l3_monitoring(&self) -> Option<L3MonitoringInfo>
pub fn l3_monitoring(&self) -> Option<L3MonitoringInfo>
L3 Cache Monitoring.
Trait Implementations§
Auto Trait Implementations§
impl<R> Freeze for RdtMonitoringInfo<R>where
R: Freeze,
impl<R> RefUnwindSafe for RdtMonitoringInfo<R>where
R: RefUnwindSafe,
impl<R> Send for RdtMonitoringInfo<R>where
R: Send,
impl<R> Sync for RdtMonitoringInfo<R>where
R: Sync,
impl<R> Unpin for RdtMonitoringInfo<R>where
R: Unpin,
impl<R> UnwindSafe for RdtMonitoringInfo<R>where
R: UnwindSafe,
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