pub enum TruthStatus {
Unknown,
Hypothesis,
Supported,
Verified,
Rejected,
}Expand description
Truth status describes claim truth, not usefulness.
Variants§
Unknown
Truth is not known.
Hypothesis
Claim is proposed but not verified.
Supported
Claim is supported within a declared scope.
Verified
Claim is verified by the appropriate authority path.
Rejected
Claim has been contradicted or rejected.
Trait Implementations§
Source§impl Clone for TruthStatus
impl Clone for TruthStatus
Source§fn clone(&self) -> TruthStatus
fn clone(&self) -> TruthStatus
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 TruthStatus
impl Debug for TruthStatus
Source§impl PartialEq for TruthStatus
impl PartialEq for TruthStatus
Source§fn eq(&self, other: &TruthStatus) -> bool
fn eq(&self, other: &TruthStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for TruthStatus
impl Eq for TruthStatus
impl StructuralPartialEq for TruthStatus
Auto Trait Implementations§
impl Freeze for TruthStatus
impl RefUnwindSafe for TruthStatus
impl Send for TruthStatus
impl Sync for TruthStatus
impl Unpin for TruthStatus
impl UnsafeUnpin for TruthStatus
impl UnwindSafe for TruthStatus
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§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.