pub enum Outcome {
Clean,
MissingPreset,
SchemaViolation,
HardwareRevision,
Failed,
}Expand description
Validation outcome — stable string identifiers shared with the CLI envelope and the TS implementation.
Variants§
Clean
Validation passed with no issues.
MissingPreset
SoM/preset could not be resolved (validator exit 2); treated as a warning.
SchemaViolation
Schema/structural violation (validator exit 1).
HardwareRevision
Hardware-revision incompatibility (validator exit 3).
Failed
Validation could not be completed (validator crashed / unknown exit status).
Implementations§
Trait Implementations§
impl Copy for Outcome
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.