pub struct CoverageStats {
pub areas_total: usize,
pub areas_accounted: usize,
pub areas_reviewed: usize,
pub accounted_ratio: f64,
pub reviewed_ratio: f64,
pub pending_area_ids: Vec<String>,
pub deferred_areas: Vec<DeferredAreaSummary>,
pub verified_findings: usize,
}Expand description
Coverage metrics for inventory + notes (§6.12.4).
Fields§
§areas_total: usize§areas_accounted: usize§areas_reviewed: usize§accounted_ratio: f64§reviewed_ratio: f64§pending_area_ids: Vec<String>§deferred_areas: Vec<DeferredAreaSummary>§verified_findings: usizeTrait Implementations§
Source§impl Clone for CoverageStats
impl Clone for CoverageStats
Source§fn clone(&self) -> CoverageStats
fn clone(&self) -> CoverageStats
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 moreAuto Trait Implementations§
impl Freeze for CoverageStats
impl RefUnwindSafe for CoverageStats
impl Send for CoverageStats
impl Sync for CoverageStats
impl Unpin for CoverageStats
impl UnsafeUnpin for CoverageStats
impl UnwindSafe for CoverageStats
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