pub struct CountDeltas {
pub info_delta: i64,
pub warn_delta: i64,
pub error_delta: i64,
}Expand description
Delta counts for findings.
Fields§
§info_delta: i64§warn_delta: i64§error_delta: i64Trait Implementations§
Source§impl Clone for CountDeltas
impl Clone for CountDeltas
Source§fn clone(&self) -> CountDeltas
fn clone(&self) -> CountDeltas
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 CountDeltas
impl Debug for CountDeltas
Source§impl Default for CountDeltas
impl Default for CountDeltas
Source§fn default() -> CountDeltas
fn default() -> CountDeltas
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CountDeltas
impl<'de> Deserialize<'de> for CountDeltas
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 CountDeltas
impl PartialEq for CountDeltas
Source§impl Serialize for CountDeltas
impl Serialize for CountDeltas
impl Eq for CountDeltas
impl StructuralPartialEq for CountDeltas
Auto Trait Implementations§
impl Freeze for CountDeltas
impl RefUnwindSafe for CountDeltas
impl Send for CountDeltas
impl Sync for CountDeltas
impl Unpin for CountDeltas
impl UnsafeUnpin for CountDeltas
impl UnwindSafe for CountDeltas
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