pub struct GetBucketStatOutput {Show 15 fields
pub storage: u64,
pub object_count: u64,
pub multipart_upload_count: u64,
pub live_channel_count: u64,
pub last_modified_time: u64,
pub standard_storage: u64,
pub standard_object_count: u64,
pub ia_storage: u64,
pub ia_object_count: u64,
pub archive_storage: u64,
pub archive_object_count: u64,
pub cold_archive_storage: u64,
pub cold_archive_object_count: u64,
pub deep_cold_archive_storage: u64,
pub deep_cold_archive_object_count: u64,
}Expand description
Response for the GetBucketStat API.
Fields§
§storage: u64§object_count: u64§multipart_upload_count: u64§live_channel_count: u64§last_modified_time: u64§standard_storage: u64§standard_object_count: u64§ia_storage: u64§ia_object_count: u64§archive_storage: u64§archive_object_count: u64§cold_archive_storage: u64§cold_archive_object_count: u64§deep_cold_archive_storage: u64§deep_cold_archive_object_count: u64Trait Implementations§
Source§impl Clone for GetBucketStatOutput
impl Clone for GetBucketStatOutput
Source§fn clone(&self) -> GetBucketStatOutput
fn clone(&self) -> GetBucketStatOutput
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 GetBucketStatOutput
impl Debug for GetBucketStatOutput
Source§impl<'de> Deserialize<'de> for GetBucketStatOutput
impl<'de> Deserialize<'de> for GetBucketStatOutput
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 GetBucketStatOutput
impl PartialEq for GetBucketStatOutput
Source§fn eq(&self, other: &GetBucketStatOutput) -> bool
fn eq(&self, other: &GetBucketStatOutput) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for GetBucketStatOutput
Auto Trait Implementations§
impl Freeze for GetBucketStatOutput
impl RefUnwindSafe for GetBucketStatOutput
impl Send for GetBucketStatOutput
impl Sync for GetBucketStatOutput
impl Unpin for GetBucketStatOutput
impl UnsafeUnpin for GetBucketStatOutput
impl UnwindSafe for GetBucketStatOutput
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