pub struct ReportSummary {
pub period: String,
pub range: ReportRange,
pub totals: ReportTotals,
pub top_categories: Vec<NameCount>,
pub top_tags: Vec<NameCount>,
pub top_content_types: Vec<NameCount>,
pub validation_status_totals: Vec<NameCount>,
}Fields§
§period: String§range: ReportRange§totals: ReportTotals§top_categories: Vec<NameCount>§top_content_types: Vec<NameCount>§validation_status_totals: Vec<NameCount>Trait Implementations§
Source§impl Clone for ReportSummary
impl Clone for ReportSummary
Source§fn clone(&self) -> ReportSummary
fn clone(&self) -> ReportSummary
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 ReportSummary
impl Debug for ReportSummary
Auto Trait Implementations§
impl Freeze for ReportSummary
impl RefUnwindSafe for ReportSummary
impl Send for ReportSummary
impl Sync for ReportSummary
impl Unpin for ReportSummary
impl UnsafeUnpin for ReportSummary
impl UnwindSafe for ReportSummary
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