pub struct AboutQuotaBytesByService {
pub bytes_used: Option<i64>,
pub service_name: Option<String>,
}Expand description
The amount of storage quota used by different Google services.
This type is not used in any activity, and only used as part of another schema.
Fields§
§bytes_used: Option<i64>The storage quota bytes used by the service.
service_name: Option<String>The service’s name, e.g. DRIVE, GMAIL, or PHOTOS.
Trait Implementations§
Source§impl Clone for AboutQuotaBytesByService
impl Clone for AboutQuotaBytesByService
Source§fn clone(&self) -> AboutQuotaBytesByService
fn clone(&self) -> AboutQuotaBytesByService
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 AboutQuotaBytesByService
impl Debug for AboutQuotaBytesByService
Source§impl Default for AboutQuotaBytesByService
impl Default for AboutQuotaBytesByService
Source§fn default() -> AboutQuotaBytesByService
fn default() -> AboutQuotaBytesByService
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AboutQuotaBytesByService
impl<'de> Deserialize<'de> for AboutQuotaBytesByService
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 Serialize for AboutQuotaBytesByService
impl Serialize for AboutQuotaBytesByService
impl NestedType for AboutQuotaBytesByService
impl Part for AboutQuotaBytesByService
Auto Trait Implementations§
impl Freeze for AboutQuotaBytesByService
impl RefUnwindSafe for AboutQuotaBytesByService
impl Send for AboutQuotaBytesByService
impl Sync for AboutQuotaBytesByService
impl Unpin for AboutQuotaBytesByService
impl UnwindSafe for AboutQuotaBytesByService
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