pub struct GetObjectStorageUsage200Response {
pub running: bool,
pub started_at: String,
pub finished_at: Option<Option<String>>,
pub current_prefix: Option<Option<String>>,
pub scanned_objects: i64,
pub folders: Vec<GetObjectStorageUsage200ResponseFoldersInner>,
pub error: Option<Option<String>>,
}Fields§
§running: bool§started_at: String§finished_at: Option<Option<String>>§current_prefix: Option<Option<String>>§scanned_objects: i64§folders: Vec<GetObjectStorageUsage200ResponseFoldersInner>§error: Option<Option<String>>Implementations§
Source§impl GetObjectStorageUsage200Response
impl GetObjectStorageUsage200Response
pub fn new( running: bool, started_at: String, scanned_objects: i64, folders: Vec<GetObjectStorageUsage200ResponseFoldersInner>, ) -> GetObjectStorageUsage200Response
Trait Implementations§
Source§impl Clone for GetObjectStorageUsage200Response
impl Clone for GetObjectStorageUsage200Response
Source§fn clone(&self) -> GetObjectStorageUsage200Response
fn clone(&self) -> GetObjectStorageUsage200Response
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 Default for GetObjectStorageUsage200Response
impl Default for GetObjectStorageUsage200Response
Source§fn default() -> GetObjectStorageUsage200Response
fn default() -> GetObjectStorageUsage200Response
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetObjectStorageUsage200Response
impl<'de> Deserialize<'de> for GetObjectStorageUsage200Response
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 GetObjectStorageUsage200Response
impl PartialEq for GetObjectStorageUsage200Response
Source§fn eq(&self, other: &GetObjectStorageUsage200Response) -> bool
fn eq(&self, other: &GetObjectStorageUsage200Response) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for GetObjectStorageUsage200Response
Auto Trait Implementations§
impl Freeze for GetObjectStorageUsage200Response
impl RefUnwindSafe for GetObjectStorageUsage200Response
impl Send for GetObjectStorageUsage200Response
impl Sync for GetObjectStorageUsage200Response
impl Unpin for GetObjectStorageUsage200Response
impl UnsafeUnpin for GetObjectStorageUsage200Response
impl UnwindSafe for GetObjectStorageUsage200Response
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