pub enum ContradictionStatus {
Unresolved,
Interpreted,
Resolved,
}Expand description
Resolution lifecycle for a contradiction.
Variants§
Unresolved
Detected, not yet interpreted.
Interpreted
Human/system interpretation exists, but the conflict remains open.
Resolved
Closed by an explicit resolution.
Implementations§
Trait Implementations§
Source§impl Clone for ContradictionStatus
impl Clone for ContradictionStatus
Source§fn clone(&self) -> ContradictionStatus
fn clone(&self) -> ContradictionStatus
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 ContradictionStatus
impl Debug for ContradictionStatus
Source§impl PartialEq for ContradictionStatus
impl PartialEq for ContradictionStatus
Source§fn eq(&self, other: &ContradictionStatus) -> bool
fn eq(&self, other: &ContradictionStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for ContradictionStatus
impl Eq for ContradictionStatus
impl StructuralPartialEq for ContradictionStatus
Auto Trait Implementations§
impl Freeze for ContradictionStatus
impl RefUnwindSafe for ContradictionStatus
impl Send for ContradictionStatus
impl Sync for ContradictionStatus
impl Unpin for ContradictionStatus
impl UnsafeUnpin for ContradictionStatus
impl UnwindSafe for ContradictionStatus
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.