pub struct SeverityCounts {
pub critical: usize,
pub high: usize,
pub medium: usize,
pub low: usize,
pub unknown: usize,
}Fields§
§critical: usize§high: usize§medium: usize§low: usize§unknown: usizeTrait Implementations§
Source§impl Clone for SeverityCounts
impl Clone for SeverityCounts
Source§fn clone(&self) -> SeverityCounts
fn clone(&self) -> SeverityCounts
Returns a duplicate 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 SeverityCounts
impl Debug for SeverityCounts
Source§impl Default for SeverityCounts
impl Default for SeverityCounts
Source§fn default() -> SeverityCounts
fn default() -> SeverityCounts
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SeverityCounts
impl<'de> Deserialize<'de> for SeverityCounts
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for SeverityCounts
impl PartialEq for SeverityCounts
Source§impl Serialize for SeverityCounts
impl Serialize for SeverityCounts
impl Copy for SeverityCounts
impl Eq for SeverityCounts
impl StructuralPartialEq for SeverityCounts
Auto Trait Implementations§
impl Freeze for SeverityCounts
impl RefUnwindSafe for SeverityCounts
impl Send for SeverityCounts
impl Sync for SeverityCounts
impl Unpin for SeverityCounts
impl UnsafeUnpin for SeverityCounts
impl UnwindSafe for SeverityCounts
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