pub struct AnalyticsSummary {
pub projects_total: usize,
pub resources_total: usize,
pub files_total: usize,
pub binary_only_resources: usize,
pub resources_by_section: BTreeMap<String, usize>,
pub resources_by_type: BTreeMap<String, usize>,
pub files_by_kind: BTreeMap<String, usize>,
pub unknown_resources: usize,
pub unknown_ratio: f64,
}Expand description
Aggregate summary across all project entries.
Fields§
§projects_total: usize§resources_total: usize§files_total: usize§binary_only_resources: usize§resources_by_section: BTreeMap<String, usize>§resources_by_type: BTreeMap<String, usize>§files_by_kind: BTreeMap<String, usize>§unknown_resources: usize§unknown_ratio: f64Trait Implementations§
Source§impl Clone for AnalyticsSummary
impl Clone for AnalyticsSummary
Source§fn clone(&self) -> AnalyticsSummary
fn clone(&self) -> AnalyticsSummary
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 AnalyticsSummary
impl Debug for AnalyticsSummary
Source§impl PartialEq for AnalyticsSummary
impl PartialEq for AnalyticsSummary
Source§impl Serialize for AnalyticsSummary
impl Serialize for AnalyticsSummary
impl StructuralPartialEq for AnalyticsSummary
Auto Trait Implementations§
impl Freeze for AnalyticsSummary
impl RefUnwindSafe for AnalyticsSummary
impl Send for AnalyticsSummary
impl Sync for AnalyticsSummary
impl Unpin for AnalyticsSummary
impl UnsafeUnpin for AnalyticsSummary
impl UnwindSafe for AnalyticsSummary
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