pub enum ContradictionState {
Clean,
HasContradictions,
Undetermined,
}Expand description
Whether hypotheses are contradicted.
Variants§
Clean
No contradictions found.
HasContradictions
Some hypotheses have contradicting observations.
Undetermined
Insufficient data to determine.
Trait Implementations§
Source§impl Clone for ContradictionState
impl Clone for ContradictionState
Source§fn clone(&self) -> ContradictionState
fn clone(&self) -> ContradictionState
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for ContradictionState
Source§impl Debug for ContradictionState
impl Debug for ContradictionState
Source§impl<'de> Deserialize<'de> for ContradictionState
impl<'de> Deserialize<'de> for ContradictionState
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 ContradictionState
Source§impl PartialEq for ContradictionState
impl PartialEq for ContradictionState
Source§fn eq(&self, other: &ContradictionState) -> bool
fn eq(&self, other: &ContradictionState) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ContradictionState
impl Serialize for ContradictionState
impl StructuralPartialEq for ContradictionState
Auto Trait Implementations§
impl Freeze for ContradictionState
impl RefUnwindSafe for ContradictionState
impl Send for ContradictionState
impl Sync for ContradictionState
impl Unpin for ContradictionState
impl UnsafeUnpin for ContradictionState
impl UnwindSafe for ContradictionState
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<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.