Struct google_drive3::AboutStorageQuota[][src]

pub struct AboutStorageQuota {
    pub usage: Option<String>,
    pub usage_in_drive: Option<String>,
    pub usage_in_drive_trash: Option<String>,
    pub limit: Option<String>,
}

The user's storage quota limits and usage. All fields are measured in bytes.

This type is not used in any activity, and only used as part of another schema.

Fields

The total usage across all services.

The usage by all files in Google Drive.

The usage by trashed files in Google Drive.

The usage limit, if applicable. This will not be present if the user has unlimited storage.

Trait Implementations

impl Default for AboutStorageQuota
[src]

Returns the "default value" for a type. Read more

impl Clone for AboutStorageQuota
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for AboutStorageQuota
[src]

Formats the value using the given formatter. Read more

impl NestedType for AboutStorageQuota
[src]

impl Part for AboutStorageQuota
[src]

Auto Trait Implementations