pub struct DriftStatistics {
pub total_drifts: usize,
pub high_severity: usize,
pub medium_severity: usize,
pub low_severity: usize,
pub violations: usize,
pub deviations: usize,
pub inconsistencies: usize,
}Expand description
Statistics about detected drifts
Fields§
§total_drifts: usizeTotal number of drifts detected
high_severity: usizeNumber of high-severity drifts
medium_severity: usizeNumber of medium-severity drifts
low_severity: usizeNumber of low-severity drifts
violations: usizeNumber of violations
deviations: usizeNumber of deviations
inconsistencies: usizeNumber of inconsistencies
Trait Implementations§
Source§impl Clone for DriftStatistics
impl Clone for DriftStatistics
Source§fn clone(&self) -> DriftStatistics
fn clone(&self) -> DriftStatistics
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 DriftStatistics
impl Debug for DriftStatistics
Source§impl<'de> Deserialize<'de> for DriftStatistics
impl<'de> Deserialize<'de> for DriftStatistics
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for DriftStatistics
impl RefUnwindSafe for DriftStatistics
impl Send for DriftStatistics
impl Sync for DriftStatistics
impl Unpin for DriftStatistics
impl UnwindSafe for DriftStatistics
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