#[non_exhaustive]pub enum Outcome {
Pass,
Fail,
Warn,
Excluded,
Unsupported,
NotApplicable,
}Expand description
The outcome of evaluating one requirement against one trace.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Pass
All covering checks ran and produced no findings.
Fail
A MUST / MUST NOT requirement has findings.
Warn
A SHOULD / SHOULD NOT requirement has findings.
Excluded
The registry documents that this requirement is not judged from traces.
Unsupported
The registry references a check this validator build does not implement.
NotApplicable
The requirement is gated on a capability this session never declared (ADR-0006); its checks were not run.
Trait Implementations§
impl Copy for Outcome
Source§impl<'de> Deserialize<'de> for Outcome
impl<'de> Deserialize<'de> for Outcome
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 Outcome
impl StructuralPartialEq for Outcome
Auto Trait Implementations§
impl Freeze for Outcome
impl RefUnwindSafe for Outcome
impl Send for Outcome
impl Sync for Outcome
impl Unpin for Outcome
impl UnsafeUnpin for Outcome
impl UnwindSafe for Outcome
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