pub enum ContradictionStatus {
Candidate,
UnderReview,
Unresolved,
Confirmed,
Rejected,
Superseded,
}Expand description
Contradiction status lifecycle.
Variants§
Candidate
Contradiction candidate detected, not yet reviewed.
UnderReview
Under active review.
Unresolved
Review complete but no resolution reached yet.
Confirmed
Resolution confirmed the contradiction.
Rejected
Resolution rejected the contradiction.
Superseded
Superseded by another contradiction resolution.
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 moreimpl Copy for ContradictionStatus
Source§impl Debug for ContradictionStatus
impl Debug for ContradictionStatus
Source§impl<'de> Deserialize<'de> for ContradictionStatus
impl<'de> Deserialize<'de> for ContradictionStatus
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 ContradictionStatus
Source§impl PartialEq for ContradictionStatus
impl PartialEq for ContradictionStatus
Source§impl Serialize for ContradictionStatus
impl Serialize 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