pub struct ModeDifferentialThresholds {
pub max_changed: usize,
pub max_added: usize,
pub max_removed: usize,
pub max_total: usize,
}Expand description
Thresholds used to determine whether a mode differential run fails.
Fields§
§max_changed: usizeMaximum allowed changed fields in a pairwise comparison.
max_added: usizeMaximum allowed added fields in a pairwise comparison.
max_removed: usizeMaximum allowed removed fields in a pairwise comparison.
max_total: usizeMaximum allowed total diffs in a pairwise comparison.
Trait Implementations§
Source§impl Clone for ModeDifferentialThresholds
impl Clone for ModeDifferentialThresholds
Source§fn clone(&self) -> ModeDifferentialThresholds
fn clone(&self) -> ModeDifferentialThresholds
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 ModeDifferentialThresholds
impl Debug for ModeDifferentialThresholds
Source§impl Default for ModeDifferentialThresholds
impl Default for ModeDifferentialThresholds
Source§fn default() -> ModeDifferentialThresholds
fn default() -> ModeDifferentialThresholds
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ModeDifferentialThresholds
impl<'de> Deserialize<'de> for ModeDifferentialThresholds
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 Copy for ModeDifferentialThresholds
impl Eq for ModeDifferentialThresholds
impl StructuralPartialEq for ModeDifferentialThresholds
Auto Trait Implementations§
impl Freeze for ModeDifferentialThresholds
impl RefUnwindSafe for ModeDifferentialThresholds
impl Send for ModeDifferentialThresholds
impl Sync for ModeDifferentialThresholds
impl Unpin for ModeDifferentialThresholds
impl UnsafeUnpin for ModeDifferentialThresholds
impl UnwindSafe for ModeDifferentialThresholds
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