pub enum FindingSeverity {
Informational,
Low,
Medium,
High,
Critical,
}Expand description
Finding severity labels.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for FindingSeverity
impl Clone for FindingSeverity
Source§fn clone(&self) -> FindingSeverity
fn clone(&self) -> FindingSeverity
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 FindingSeverity
impl Debug for FindingSeverity
Source§impl Display for FindingSeverity
impl Display for FindingSeverity
Source§impl FromStr for FindingSeverity
impl FromStr for FindingSeverity
Source§impl Hash for FindingSeverity
impl Hash for FindingSeverity
Source§impl Ord for FindingSeverity
impl Ord for FindingSeverity
Source§fn cmp(&self, other: &FindingSeverity) -> Ordering
fn cmp(&self, other: &FindingSeverity) -> Ordering
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 PartialEq for FindingSeverity
impl PartialEq for FindingSeverity
Source§fn eq(&self, other: &FindingSeverity) -> bool
fn eq(&self, other: &FindingSeverity) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for FindingSeverity
impl PartialOrd for FindingSeverity
impl Copy for FindingSeverity
impl Eq for FindingSeverity
impl StructuralPartialEq for FindingSeverity
Auto Trait Implementations§
impl Freeze for FindingSeverity
impl RefUnwindSafe for FindingSeverity
impl Send for FindingSeverity
impl Sync for FindingSeverity
impl Unpin for FindingSeverity
impl UnsafeUnpin for FindingSeverity
impl UnwindSafe for FindingSeverity
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