pub struct BucketQuotaSnapshot {
pub bucket_id: String,
pub quota: BucketQuota,
}Expand description
One bucket’s quota as stored in a group or persisted in a snapshot.
Fields§
§bucket_id: String§quota: BucketQuotaTrait Implementations§
Source§impl Clone for BucketQuotaSnapshot
impl Clone for BucketQuotaSnapshot
Source§fn clone(&self) -> BucketQuotaSnapshot
fn clone(&self) -> BucketQuotaSnapshot
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 BucketQuotaSnapshot
impl Debug for BucketQuotaSnapshot
Source§impl<'de> Deserialize<'de> for BucketQuotaSnapshot
impl<'de> Deserialize<'de> for BucketQuotaSnapshot
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
impl Eq for BucketQuotaSnapshot
Source§impl PartialEq for BucketQuotaSnapshot
impl PartialEq for BucketQuotaSnapshot
Source§impl Serialize for BucketQuotaSnapshot
impl Serialize for BucketQuotaSnapshot
impl StructuralPartialEq for BucketQuotaSnapshot
Auto Trait Implementations§
impl Freeze for BucketQuotaSnapshot
impl RefUnwindSafe for BucketQuotaSnapshot
impl Send for BucketQuotaSnapshot
impl Sync for BucketQuotaSnapshot
impl Unpin for BucketQuotaSnapshot
impl UnsafeUnpin for BucketQuotaSnapshot
impl UnwindSafe for BucketQuotaSnapshot
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