pub struct ModeDifferentialPairResult {
pub corpus_id: String,
pub baseline_mode: SnapshotMode,
pub candidate_mode: SnapshotMode,
pub drift: SnapshotDriftReport,
pub changed: usize,
pub added: usize,
pub removed: usize,
pub total: usize,
pub failed_thresholds: bool,
}Expand description
Detailed result for one corpus/mode pair comparison.
Fields§
§corpus_id: StringCorpus id that was compared.
baseline_mode: SnapshotModeBaseline mode.
candidate_mode: SnapshotModeCandidate mode.
drift: SnapshotDriftReportFull drift details.
changed: usizeNumber of changed fields.
added: usizeNumber of added fields.
removed: usizeNumber of removed fields.
total: usizeNumber of total diffs.
failed_thresholds: booltrue when this pair exceeds configured thresholds.
Trait Implementations§
Source§impl Clone for ModeDifferentialPairResult
impl Clone for ModeDifferentialPairResult
Source§fn clone(&self) -> ModeDifferentialPairResult
fn clone(&self) -> ModeDifferentialPairResult
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 ModeDifferentialPairResult
impl Debug for ModeDifferentialPairResult
Source§impl<'de> Deserialize<'de> for ModeDifferentialPairResult
impl<'de> Deserialize<'de> for ModeDifferentialPairResult
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
impl Eq for ModeDifferentialPairResult
impl StructuralPartialEq for ModeDifferentialPairResult
Auto Trait Implementations§
impl Freeze for ModeDifferentialPairResult
impl RefUnwindSafe for ModeDifferentialPairResult
impl Send for ModeDifferentialPairResult
impl Sync for ModeDifferentialPairResult
impl Unpin for ModeDifferentialPairResult
impl UnsafeUnpin for ModeDifferentialPairResult
impl UnwindSafe for ModeDifferentialPairResult
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more