pub struct NowSummary {
pub generated_at: DateTime<Utc>,
pub cost_period: PeriodRange,
pub group_by: GroupBy,
pub limits: Vec<LimitSummary>,
pub current_costs: Vec<CostLaneSummary>,
pub providers: Vec<ProviderStatus>,
}Fields§
§generated_at: DateTime<Utc>§cost_period: PeriodRange§group_by: GroupBy§limits: Vec<LimitSummary>§current_costs: Vec<CostLaneSummary>§providers: Vec<ProviderStatus>Trait Implementations§
Source§impl Clone for NowSummary
impl Clone for NowSummary
Source§fn clone(&self) -> NowSummary
fn clone(&self) -> NowSummary
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 NowSummary
impl Debug for NowSummary
Source§impl<'de> Deserialize<'de> for NowSummary
impl<'de> Deserialize<'de> for NowSummary
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
Source§impl PartialEq for NowSummary
impl PartialEq for NowSummary
Source§fn eq(&self, other: &NowSummary) -> bool
fn eq(&self, other: &NowSummary) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for NowSummary
impl Serialize for NowSummary
impl StructuralPartialEq for NowSummary
Auto Trait Implementations§
impl Freeze for NowSummary
impl RefUnwindSafe for NowSummary
impl Send for NowSummary
impl Sync for NowSummary
impl Unpin for NowSummary
impl UnsafeUnpin for NowSummary
impl UnwindSafe for NowSummary
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