pub enum EvaluationVerdict {
Passed,
Failed,
Inconclusive,
}Expand description
Top-level evaluation verdict.
Variants§
Passed
Expected outcome passed.
Failed
Expected outcome failed.
Inconclusive
Evidence was insufficient or ambiguous.
Trait Implementations§
Source§impl Clone for EvaluationVerdict
impl Clone for EvaluationVerdict
Source§fn clone(&self) -> EvaluationVerdict
fn clone(&self) -> EvaluationVerdict
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 EvaluationVerdict
impl Debug for EvaluationVerdict
Source§impl<'de> Deserialize<'de> for EvaluationVerdict
impl<'de> Deserialize<'de> for EvaluationVerdict
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
Source§impl PartialEq for EvaluationVerdict
impl PartialEq for EvaluationVerdict
Source§fn eq(&self, other: &EvaluationVerdict) -> bool
fn eq(&self, other: &EvaluationVerdict) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for EvaluationVerdict
impl Serialize for EvaluationVerdict
impl Eq for EvaluationVerdict
impl StructuralPartialEq for EvaluationVerdict
Auto Trait Implementations§
impl Freeze for EvaluationVerdict
impl RefUnwindSafe for EvaluationVerdict
impl Send for EvaluationVerdict
impl Sync for EvaluationVerdict
impl Unpin for EvaluationVerdict
impl UnsafeUnpin for EvaluationVerdict
impl UnwindSafe for EvaluationVerdict
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