pub struct GetUsageAndQuotaResult {
pub usage: f64,
pub quota: f64,
pub override_active: bool,
pub usage_breakdown: Vec<UsageForType>,
}Fields§
§usage: f64Storage usage (bytes).
quota: f64Storage quota (bytes).
override_active: boolWhether or not the origin has an active storage quota override
usage_breakdown: Vec<UsageForType>Storage usage per type (bytes).
Trait Implementations§
Source§impl Clone for GetUsageAndQuotaResult
impl Clone for GetUsageAndQuotaResult
Source§fn clone(&self) -> GetUsageAndQuotaResult
fn clone(&self) -> GetUsageAndQuotaResult
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 GetUsageAndQuotaResult
impl Debug for GetUsageAndQuotaResult
Source§impl<'de> Deserialize<'de> for GetUsageAndQuotaResult
impl<'de> Deserialize<'de> for GetUsageAndQuotaResult
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 GetUsageAndQuotaResult
impl PartialEq for GetUsageAndQuotaResult
Source§impl Serialize for GetUsageAndQuotaResult
impl Serialize for GetUsageAndQuotaResult
Source§impl TryFrom<Value> for GetUsageAndQuotaResult
impl TryFrom<Value> for GetUsageAndQuotaResult
impl StructuralPartialEq for GetUsageAndQuotaResult
Auto Trait Implementations§
impl Freeze for GetUsageAndQuotaResult
impl RefUnwindSafe for GetUsageAndQuotaResult
impl Send for GetUsageAndQuotaResult
impl Sync for GetUsageAndQuotaResult
impl Unpin for GetUsageAndQuotaResult
impl UnsafeUnpin for GetUsageAndQuotaResult
impl UnwindSafe for GetUsageAndQuotaResult
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