pub enum RiskLevel {
Low,
Medium,
High,
Critical,
}
Expand description
Risk level assessment
Variants§
Low
No security concerns detected
Medium
Minor concerns, likely benign
High
Significant security concerns
Critical
Critical security risk
Trait Implementations§
Source§impl Ord for RiskLevel
impl Ord for RiskLevel
Source§impl PartialOrd for RiskLevel
impl PartialOrd for RiskLevel
impl Copy for RiskLevel
impl Eq for RiskLevel
impl StructuralPartialEq for RiskLevel
Auto Trait Implementations§
impl Freeze for RiskLevel
impl RefUnwindSafe for RiskLevel
impl Send for RiskLevel
impl Sync for RiskLevel
impl Unpin for RiskLevel
impl UnwindSafe for RiskLevel
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