pub enum SecurityImpact {
High,
Medium,
Low,
None,
}
Expand description
NEW: Security impact assessment
Variants§
High
Significant security improvement
Medium
Moderate security improvement
Low
Minor security improvement
None
No significant security impact
Trait Implementations§
Source§impl Clone for SecurityImpact
impl Clone for SecurityImpact
Source§fn clone(&self) -> SecurityImpact
fn clone(&self) -> SecurityImpact
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for SecurityImpact
impl Debug for SecurityImpact
Source§impl PartialEq for SecurityImpact
impl PartialEq for SecurityImpact
impl StructuralPartialEq for SecurityImpact
Auto Trait Implementations§
impl Freeze for SecurityImpact
impl RefUnwindSafe for SecurityImpact
impl Send for SecurityImpact
impl Sync for SecurityImpact
impl Unpin for SecurityImpact
impl UnwindSafe for SecurityImpact
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