pub enum SupportDecision {
Supported,
Unsupported,
}Expand description
Semantic decision made about a claim and its cited evidence.
Variants§
Implementations§
Source§impl SupportDecision
impl SupportDecision
pub const fn is_supported(self) -> bool
Trait Implementations§
Source§impl Clone for SupportDecision
impl Clone for SupportDecision
Source§fn clone(&self) -> SupportDecision
fn clone(&self) -> SupportDecision
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 SupportDecision
Source§impl Debug for SupportDecision
impl Debug for SupportDecision
Source§impl<'de> Deserialize<'de> for SupportDecision
impl<'de> Deserialize<'de> for SupportDecision
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 SupportDecision
Source§impl From<bool> for SupportDecision
impl From<bool> for SupportDecision
Source§impl PartialEq for SupportDecision
impl PartialEq for SupportDecision
Source§impl Serialize for SupportDecision
impl Serialize for SupportDecision
impl StructuralPartialEq for SupportDecision
Auto Trait Implementations§
impl Freeze for SupportDecision
impl RefUnwindSafe for SupportDecision
impl Send for SupportDecision
impl Sync for SupportDecision
impl Unpin for SupportDecision
impl UnsafeUnpin for SupportDecision
impl UnwindSafe for SupportDecision
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