pub struct SummaryReportRow {
pub provider: String,
pub account: String,
pub kind: String,
pub summaries: u64,
pub usage: UsageTotals,
pub direct_event_usage: UsageTotals,
pub exact_overlap_summaries: u64,
pub observed_at: Option<DateTime<Utc>>,
pub sources: BTreeSet<String>,
pub paths: BTreeSet<String>,
}Fields§
§provider: String§account: String§kind: String§summaries: u64§usage: UsageTotals§direct_event_usage: UsageTotals§exact_overlap_summaries: u64§observed_at: Option<DateTime<Utc>>§sources: BTreeSet<String>§paths: BTreeSet<String>Trait Implementations§
Source§impl Clone for SummaryReportRow
impl Clone for SummaryReportRow
Source§fn clone(&self) -> SummaryReportRow
fn clone(&self) -> SummaryReportRow
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 SummaryReportRow
impl RefUnwindSafe for SummaryReportRow
impl Send for SummaryReportRow
impl Sync for SummaryReportRow
impl Unpin for SummaryReportRow
impl UnsafeUnpin for SummaryReportRow
impl UnwindSafe for SummaryReportRow
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