pub struct InterventionCounts {
pub input_latency: u64,
pub resize_dominance: u64,
pub fairness_index: u64,
}Expand description
Counts of interventions by type.
Fields§
§input_latency: u64Input latency interventions.
resize_dominance: u64Resize dominance interventions.
fairness_index: u64Fairness index interventions.
Trait Implementations§
Source§impl Clone for InterventionCounts
impl Clone for InterventionCounts
Source§fn clone(&self) -> InterventionCounts
fn clone(&self) -> InterventionCounts
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 moreSource§impl Debug for InterventionCounts
impl Debug for InterventionCounts
Source§impl Default for InterventionCounts
impl Default for InterventionCounts
Source§fn default() -> InterventionCounts
fn default() -> InterventionCounts
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for InterventionCounts
impl RefUnwindSafe for InterventionCounts
impl Send for InterventionCounts
impl Sync for InterventionCounts
impl Unpin for InterventionCounts
impl UnsafeUnpin for InterventionCounts
impl UnwindSafe for InterventionCounts
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