Struct dropbox_sdk::team::StorageBucket
source · [−]Available on crate feature
dbx_team only.Expand description
Describes the number of users in a specific storage bucket.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.bucket: StringThe name of the storage bucket. For example, ‘1G’ is a bucket of users with storage size up to 1 Giga.
users: u64The number of people whose storage is in the range of this storage bucket.
Implementations
Trait Implementations
sourceimpl Clone for StorageBucket
impl Clone for StorageBucket
sourcefn clone(&self) -> StorageBucket
fn clone(&self) -> StorageBucket
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for StorageBucket
impl Debug for StorageBucket
sourceimpl<'de> Deserialize<'de> for StorageBucket
impl<'de> Deserialize<'de> for StorageBucket
sourcefn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error>
fn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error>
Deserialize this value from the given Serde deserializer. Read more
sourceimpl PartialEq<StorageBucket> for StorageBucket
impl PartialEq<StorageBucket> for StorageBucket
sourcefn eq(&self, other: &StorageBucket) -> bool
fn eq(&self, other: &StorageBucket) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &StorageBucket) -> bool
fn ne(&self, other: &StorageBucket) -> bool
This method tests for !=.
sourceimpl Serialize for StorageBucket
impl Serialize for StorageBucket
impl Eq for StorageBucket
impl StructuralEq for StorageBucket
impl StructuralPartialEq for StorageBucket
Auto Trait Implementations
impl RefUnwindSafe for StorageBucket
impl Send for StorageBucket
impl Sync for StorageBucket
impl Unpin for StorageBucket
impl UnwindSafe for StorageBucket
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more