pub struct NumaEfficiencyMetrics {
pub locality_ratio: f64,
pub load_imbalance: f64,
pub total_migrations: u64,
pub active_nodes: usize,
pub memory_efficiency: f64,
}
Expand description
NUMA system efficiency metrics.
Fields§
§locality_ratio: f64
§load_imbalance: f64
§total_migrations: u64
§active_nodes: usize
§memory_efficiency: f64
Trait Implementations§
Source§impl Clone for NumaEfficiencyMetrics
impl Clone for NumaEfficiencyMetrics
Source§fn clone(&self) -> NumaEfficiencyMetrics
fn clone(&self) -> NumaEfficiencyMetrics
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 moreAuto Trait Implementations§
impl Freeze for NumaEfficiencyMetrics
impl RefUnwindSafe for NumaEfficiencyMetrics
impl Send for NumaEfficiencyMetrics
impl Sync for NumaEfficiencyMetrics
impl Unpin for NumaEfficiencyMetrics
impl UnwindSafe for NumaEfficiencyMetrics
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