pub struct VerdictCounts {
pub info: u32,
pub warn: u32,
pub error: u32,
}Expand description
Counts of findings by severity.
Fields§
§info: u32Number of info-level findings.
warn: u32Number of warn-level findings.
error: u32Number of error-level findings.
Trait Implementations§
Source§impl Clone for VerdictCounts
impl Clone for VerdictCounts
Source§fn clone(&self) -> VerdictCounts
fn clone(&self) -> VerdictCounts
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 VerdictCounts
impl Debug for VerdictCounts
Source§impl Default for VerdictCounts
impl Default for VerdictCounts
Source§fn default() -> VerdictCounts
fn default() -> VerdictCounts
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for VerdictCounts
impl<'de> Deserialize<'de> for VerdictCounts
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
Auto Trait Implementations§
impl Freeze for VerdictCounts
impl RefUnwindSafe for VerdictCounts
impl Send for VerdictCounts
impl Sync for VerdictCounts
impl Unpin for VerdictCounts
impl UnsafeUnpin for VerdictCounts
impl UnwindSafe for VerdictCounts
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