pub struct ReportStats {
pub by_severity: BTreeMap<String, usize>,
pub by_rule: BTreeMap<String, usize>,
pub definite_bugs: usize,
pub review_required: usize,
}Fields§
§by_severity: BTreeMap<String, usize>§by_rule: BTreeMap<String, usize>§definite_bugs: usize§review_required: usizeTrait Implementations§
Source§impl Clone for ReportStats
impl Clone for ReportStats
Source§fn clone(&self) -> ReportStats
fn clone(&self) -> ReportStats
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 ReportStats
impl Debug for ReportStats
Source§impl Default for ReportStats
impl Default for ReportStats
Source§fn default() -> ReportStats
fn default() -> ReportStats
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ReportStats
impl<'de> Deserialize<'de> for ReportStats
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 ReportStats
impl RefUnwindSafe for ReportStats
impl Send for ReportStats
impl Sync for ReportStats
impl Unpin for ReportStats
impl UnsafeUnpin for ReportStats
impl UnwindSafe for ReportStats
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