pub struct SiteUsageEntity {
pub current_storage: Option<i64>,
pub deleted_files_counted_in_minimum: Option<i64>,
pub deleted_files_storage: Option<i64>,
pub root_storage: Option<i64>,
pub total_billable_transfer_used: Option<i64>,
pub usage_by_top_level_dir: Option<Value>,
}
Expand description
Site usage statistics
Fields§
§current_storage: Option<i64>
Current storage usage (bytes)
deleted_files_counted_in_minimum: Option<i64>
Deleted files count
deleted_files_storage: Option<i64>
Deleted files storage (bytes)
root_storage: Option<i64>
Root storage (bytes)
total_billable_transfer_used: Option<i64>
Total billable transfer (bytes)
usage_by_top_level_dir: Option<Value>
Usage by top-level directory
Trait Implementations§
Source§impl Clone for SiteUsageEntity
impl Clone for SiteUsageEntity
Source§fn clone(&self) -> SiteUsageEntity
fn clone(&self) -> SiteUsageEntity
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 SiteUsageEntity
impl Debug for SiteUsageEntity
Source§impl<'de> Deserialize<'de> for SiteUsageEntity
impl<'de> Deserialize<'de> for SiteUsageEntity
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
Auto Trait Implementations§
impl Freeze for SiteUsageEntity
impl RefUnwindSafe for SiteUsageEntity
impl Send for SiteUsageEntity
impl Sync for SiteUsageEntity
impl Unpin for SiteUsageEntity
impl UnwindSafe for SiteUsageEntity
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