pub struct UsageSummary {
pub generated_at: DateTime<Utc>,
pub totals: Totals,
pub timeline: Vec<TimelinePoint>,
pub distributions: DimensionDistributions,
pub events: Vec<UsageEvent>,
pub warnings: Vec<UsageWarning>,
}Fields§
§generated_at: DateTime<Utc>§totals: Totals§timeline: Vec<TimelinePoint>§distributions: DimensionDistributions§events: Vec<UsageEvent>§warnings: Vec<UsageWarning>Trait Implementations§
Source§impl Clone for UsageSummary
impl Clone for UsageSummary
Source§fn clone(&self) -> UsageSummary
fn clone(&self) -> UsageSummary
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 moreSource§impl Debug for UsageSummary
impl Debug for UsageSummary
Source§impl<'de> Deserialize<'de> for UsageSummary
impl<'de> Deserialize<'de> for UsageSummary
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for UsageSummary
Source§impl PartialEq for UsageSummary
impl PartialEq for UsageSummary
Source§fn eq(&self, other: &UsageSummary) -> bool
fn eq(&self, other: &UsageSummary) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for UsageSummary
impl Serialize for UsageSummary
impl StructuralPartialEq for UsageSummary
Auto Trait Implementations§
impl Freeze for UsageSummary
impl RefUnwindSafe for UsageSummary
impl Send for UsageSummary
impl Sync for UsageSummary
impl Unpin for UsageSummary
impl UnsafeUnpin for UsageSummary
impl UnwindSafe for UsageSummary
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