pub enum Severity {
Low,
Medium,
High,
Critical,
Info,
}Expand description
Finding severity, in ascending order of urgency (Info is the catch-all
used when a check declares no severity).
Variants§
Low
Low impact.
Medium
Moderate impact.
High
High impact.
Critical
Critical impact — typically remote code execution or full compromise.
Info
Informational; no direct security impact. The default when unset.
Implementations§
Trait Implementations§
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