pub enum SupportState {
Supported,
PartiallySupported,
Unsupported,
Contradicted,
HeuristicOnly,
Unknown,
}Expand description
Support states for a claim within a specific evidence bundle scope.
Variants§
Supported
Positive evidence was found in the bundle.
PartiallySupported
Mixed or partial evidence was found.
Unsupported
No supporting evidence found in this bundle.
Contradicted
A resolved contradiction applies to this claim.
HeuristicOnly
Heuristic matching was used; no strong proof exists.
Unknown
No support judgment has been made yet.
Implementations§
Trait Implementations§
Source§impl Clone for SupportState
impl Clone for SupportState
Source§fn clone(&self) -> SupportState
fn clone(&self) -> SupportState
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 SupportState
Source§impl Debug for SupportState
impl Debug for SupportState
Source§impl<'de> Deserialize<'de> for SupportState
impl<'de> Deserialize<'de> for SupportState
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 SupportState
Source§impl Hash for SupportState
impl Hash for SupportState
Source§impl PartialEq for SupportState
impl PartialEq for SupportState
Source§impl Serialize for SupportState
impl Serialize for SupportState
impl StructuralPartialEq for SupportState
Auto Trait Implementations§
impl Freeze for SupportState
impl RefUnwindSafe for SupportState
impl Send for SupportState
impl Sync for SupportState
impl Unpin for SupportState
impl UnsafeUnpin for SupportState
impl UnwindSafe for SupportState
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