pub struct CombinedBillingUsage {
pub days_left_in_billing_cycle: i32,
pub estimated_paid_storage_for_month: i32,
pub estimated_storage_for_month: i32,
}
Fields§
§days_left_in_billing_cycle: i32
Numbers of days left in billing cycle.
estimated_paid_storage_for_month: i32
Estimated storage space (GB) used in billing cycle.
estimated_storage_for_month: i32
Estimated sum of free and paid storage space (GB) used in billing cycle.
Implementations§
Trait Implementations§
Source§impl Clone for CombinedBillingUsage
impl Clone for CombinedBillingUsage
Source§fn clone(&self) -> CombinedBillingUsage
fn clone(&self) -> CombinedBillingUsage
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 CombinedBillingUsage
impl Debug for CombinedBillingUsage
Source§impl Default for CombinedBillingUsage
impl Default for CombinedBillingUsage
Source§fn default() -> CombinedBillingUsage
fn default() -> CombinedBillingUsage
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CombinedBillingUsage
impl<'de> Deserialize<'de> for CombinedBillingUsage
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 CombinedBillingUsage
impl PartialEq for CombinedBillingUsage
Source§impl Serialize for CombinedBillingUsage
impl Serialize for CombinedBillingUsage
impl StructuralPartialEq for CombinedBillingUsage
Auto Trait Implementations§
impl Freeze for CombinedBillingUsage
impl RefUnwindSafe for CombinedBillingUsage
impl Send for CombinedBillingUsage
impl Sync for CombinedBillingUsage
impl Unpin for CombinedBillingUsage
impl UnwindSafe for CombinedBillingUsage
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