pub enum NamedGateOutcome {
UnknownGate,
Sigma(SigmaOutcome),
Relations(RelationsOutcome),
Shapes(ShapesOutcome),
Ran {
result: Box<GateResult>,
findings: Vec<LintFinding>,
},
}Expand description
ONT-2b: what --gate <name> answered. Only Ran and Sigma(Ran) are verdicts about the corpus.
Variants§
UnknownGate
--gate was given a name this build does not compute alone.
Sigma(SigmaOutcome)
The sigma gate, which has two non-verdict answers of its own (no Σ, malformed Σ).
Relations(RelationsOutcome)
The relations gate (ONT-4), with three non-verdict answers (no Σ, malformed Σ, no typed relations).
Shapes(ShapesOutcome)
The shapes gate (ONT-4b), with four non-verdict answers (unsupported shape, no shapes, no focus, control failed).
Ran
A gate that ran and judged the corpus.
Auto Trait Implementations§
impl Freeze for NamedGateOutcome
impl RefUnwindSafe for NamedGateOutcome
impl Send for NamedGateOutcome
impl Sync for NamedGateOutcome
impl Unpin for NamedGateOutcome
impl UnsafeUnpin for NamedGateOutcome
impl UnwindSafe for NamedGateOutcome
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