pub enum EvidencePolarity {
Positive,
Contradictory,
}Expand description
Polarity of an evidence event.
Variants§
Positive
Evidence supports the hypothesis (positive log-odds contribution).
Contradictory
Evidence opposes the hypothesis (negative log-odds contribution).
Trait Implementations§
Source§impl Clone for EvidencePolarity
impl Clone for EvidencePolarity
Source§fn clone(&self) -> EvidencePolarity
fn clone(&self) -> EvidencePolarity
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 moreSource§impl Debug for EvidencePolarity
impl Debug for EvidencePolarity
Source§impl Hash for EvidencePolarity
impl Hash for EvidencePolarity
Source§impl PartialEq for EvidencePolarity
impl PartialEq for EvidencePolarity
Source§fn eq(&self, other: &EvidencePolarity) -> bool
fn eq(&self, other: &EvidencePolarity) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for EvidencePolarity
impl Eq for EvidencePolarity
impl StructuralPartialEq for EvidencePolarity
Auto Trait Implementations§
impl Freeze for EvidencePolarity
impl RefUnwindSafe for EvidencePolarity
impl Send for EvidencePolarity
impl Sync for EvidencePolarity
impl Unpin for EvidencePolarity
impl UnsafeUnpin for EvidencePolarity
impl UnwindSafe for EvidencePolarity
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,
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.