#[non_exhaustive]pub enum Severity {
Info,
Low,
Medium,
High,
Critical,
}Expand description
The canonical 5-level severity scale, shared across every SecurityRonin
analyzer via forensicnomicon::report.
Severity of a forensic finding (Info < Low < Medium < High < Critical).
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.
Info
Informational — provenance/context, not suspicious on its own.
Low
Low — minor irregularity with a common benign explanation.
Medium
Medium — notable irregularity worth examiner attention.
High
High — strong indicator of tampering or concealment.
Critical
Critical — structural contradiction; the medium cannot be trusted as-is.
Trait Implementations§
impl Copy for Severity
impl Eq for Severity
Source§impl Ord for Severity
impl Ord for Severity
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialOrd for Severity
impl PartialOrd for Severity
impl StructuralPartialEq for Severity
Auto Trait Implementations§
impl Freeze for Severity
impl RefUnwindSafe for Severity
impl Send for Severity
impl Sync for Severity
impl Unpin for Severity
impl UnsafeUnpin for Severity
impl UnwindSafe for Severity
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