pub struct UsageReportRow {
pub provider: String,
pub account: String,
pub events: u64,
pub usage: UsageTotals,
pub sources: BTreeSet<String>,
pub paths: BTreeSet<String>,
}Fields§
§provider: String§account: String§events: u64§usage: UsageTotals§sources: BTreeSet<String>§paths: BTreeSet<String>Trait Implementations§
Source§impl Clone for UsageReportRow
impl Clone for UsageReportRow
Source§fn clone(&self) -> UsageReportRow
fn clone(&self) -> UsageReportRow
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 UsageReportRow
impl RefUnwindSafe for UsageReportRow
impl Send for UsageReportRow
impl Sync for UsageReportRow
impl Unpin for UsageReportRow
impl UnsafeUnpin for UsageReportRow
impl UnwindSafe for UsageReportRow
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