pub enum TemporalContradictionStatus {
None,
PossibleContradiction {
description: String,
},
}Expand description
Contradiction status between two temporal claims about the same entity.
Variants§
None
No contradiction detected.
PossibleContradiction
Claims overlap in time and may contradict each other. Resolution is deferred to the caller / future Forge layer.
Trait Implementations§
Source§impl Clone for TemporalContradictionStatus
impl Clone for TemporalContradictionStatus
Source§fn clone(&self) -> TemporalContradictionStatus
fn clone(&self) -> TemporalContradictionStatus
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 TemporalContradictionStatus
impl Debug for TemporalContradictionStatus
Source§impl<'de> Deserialize<'de> for TemporalContradictionStatus
impl<'de> Deserialize<'de> for TemporalContradictionStatus
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 TemporalContradictionStatus
Source§impl PartialEq for TemporalContradictionStatus
impl PartialEq for TemporalContradictionStatus
Source§fn eq(&self, other: &TemporalContradictionStatus) -> bool
fn eq(&self, other: &TemporalContradictionStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for TemporalContradictionStatus
Auto Trait Implementations§
impl Freeze for TemporalContradictionStatus
impl RefUnwindSafe for TemporalContradictionStatus
impl Send for TemporalContradictionStatus
impl Sync for TemporalContradictionStatus
impl Unpin for TemporalContradictionStatus
impl UnsafeUnpin for TemporalContradictionStatus
impl UnwindSafe for TemporalContradictionStatus
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§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.