pub struct OptimizationSummary {
pub patterns_total: usize,
pub duplicates_found: usize,
pub prunable: usize,
pub decay_healthy: usize,
pub decay_decaying: usize,
pub decay_critical: usize,
pub patterns_decayed: usize,
pub patterns_promoted: usize,
pub patterns_demoted: usize,
pub cache_cleared: bool,
}Expand description
Optimization summary.
Fields§
§patterns_total: usize§duplicates_found: usize§prunable: usize§decay_healthy: usize§decay_decaying: usize§decay_critical: usize§patterns_decayed: usize§patterns_promoted: usize§patterns_demoted: usize§cache_cleared: boolTrait Implementations§
Source§impl Clone for OptimizationSummary
impl Clone for OptimizationSummary
Source§fn clone(&self) -> OptimizationSummary
fn clone(&self) -> OptimizationSummary
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 OptimizationSummary
impl Debug for OptimizationSummary
Auto Trait Implementations§
impl Freeze for OptimizationSummary
impl RefUnwindSafe for OptimizationSummary
impl Send for OptimizationSummary
impl Sync for OptimizationSummary
impl Unpin for OptimizationSummary
impl UnsafeUnpin for OptimizationSummary
impl UnwindSafe for OptimizationSummary
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