pub struct MultiProjectSummary {
pub total: usize,
pub by_kind: BTreeMap<RootKind, usize>,
pub by_grade: BTreeMap<ProjectHealth, usize>,
pub by_risk_level: BTreeMap<RiskSeverity, usize>,
pub files_scanned: usize,
}Fields§
§total: usize§by_kind: BTreeMap<RootKind, usize>§by_grade: BTreeMap<ProjectHealth, usize>§by_risk_level: BTreeMap<RiskSeverity, usize>§files_scanned: usizeTrait Implementations§
Source§impl Clone for MultiProjectSummary
impl Clone for MultiProjectSummary
Source§fn clone(&self) -> MultiProjectSummary
fn clone(&self) -> MultiProjectSummary
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 MultiProjectSummary
impl Debug for MultiProjectSummary
Source§impl Default for MultiProjectSummary
impl Default for MultiProjectSummary
Source§fn default() -> MultiProjectSummary
fn default() -> MultiProjectSummary
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for MultiProjectSummary
impl<'de> Deserialize<'de> for MultiProjectSummary
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 MultiProjectSummary
impl PartialEq for MultiProjectSummary
Source§fn eq(&self, other: &MultiProjectSummary) -> bool
fn eq(&self, other: &MultiProjectSummary) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for MultiProjectSummary
impl Serialize for MultiProjectSummary
impl Eq for MultiProjectSummary
impl StructuralPartialEq for MultiProjectSummary
Auto Trait Implementations§
impl Freeze for MultiProjectSummary
impl RefUnwindSafe for MultiProjectSummary
impl Send for MultiProjectSummary
impl Sync for MultiProjectSummary
impl Unpin for MultiProjectSummary
impl UnsafeUnpin for MultiProjectSummary
impl UnwindSafe for MultiProjectSummary
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