pub struct SliceSummary {
pub total: usize,
pub counts_by_kind: HashMap<String, usize>,
pub counts_by_severity: HashMap<String, usize>,
}Fields§
§total: usize§counts_by_kind: HashMap<String, usize>§counts_by_severity: HashMap<String, usize>Trait Implementations§
Source§impl Clone for SliceSummary
impl Clone for SliceSummary
Source§fn clone(&self) -> SliceSummary
fn clone(&self) -> SliceSummary
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 SliceSummary
impl Debug for SliceSummary
Source§impl<'de> Deserialize<'de> for SliceSummary
impl<'de> Deserialize<'de> for SliceSummary
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 SliceSummary
impl RefUnwindSafe for SliceSummary
impl Send for SliceSummary
impl Sync for SliceSummary
impl Unpin for SliceSummary
impl UnsafeUnpin for SliceSummary
impl UnwindSafe for SliceSummary
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