pub struct DecayReport {
pub total: usize,
pub healthy: usize,
pub decaying: usize,
pub critical: usize,
pub prunable: usize,
}Expand description
Report on pattern decay status.
Fields§
§total: usize§healthy: usize§decaying: usize§critical: usize§prunable: usizeTrait Implementations§
Source§impl Clone for DecayReport
impl Clone for DecayReport
Source§fn clone(&self) -> DecayReport
fn clone(&self) -> DecayReport
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 DecayReport
impl RefUnwindSafe for DecayReport
impl Send for DecayReport
impl Sync for DecayReport
impl Unpin for DecayReport
impl UnsafeUnpin for DecayReport
impl UnwindSafe for DecayReport
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