Struct google_drive2::About[][src]

pub struct About {
    pub language_code: Option<String>,
    pub quota_bytes_by_service: Option<Vec<AboutQuotaBytesByService>>,
    pub features: Option<Vec<AboutFeatures>>,
    pub quota_bytes_used: Option<String>,
    pub kind: Option<String>,
    pub additional_role_info: Option<Vec<AboutAdditionalRoleInfo>>,
    pub folder_color_palette: Option<Vec<String>>,
    pub user: Option<User>,
    pub quota_type: Option<String>,
    pub quota_bytes_used_aggregate: Option<String>,
    pub max_upload_sizes: Option<Vec<AboutMaxUploadSizes>>,
    pub permission_id: Option<String>,
    pub name: Option<String>,
    pub team_drive_themes: Option<Vec<AboutTeamDriveThemes>>,
    pub quota_bytes_total: Option<String>,
    pub remaining_change_ids: Option<String>,
    pub etag: Option<String>,
    pub import_formats: Option<Vec<AboutImportFormats>>,
    pub root_folder_id: Option<String>,
    pub largest_change_id: Option<String>,
    pub quota_bytes_used_in_trash: Option<String>,
    pub export_formats: Option<Vec<AboutExportFormats>>,
    pub domain_sharing_policy: Option<String>,
    pub self_link: Option<String>,
    pub is_current_app_installed: Option<bool>,
}

An item with user information and settings.

Activities

This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).

Fields

The user's language or locale code, as defined by BCP 47, with some extensions from Unicode's LDML format (http://www.unicode.org/reports/tr35/).

The amount of storage quota used by different Google services.

List of additional features enabled on this account.

The number of quota bytes used by Google Drive.

This is always drive#about.

Information about supported additional roles per file type. The most specific type takes precedence.

The palette of allowable folder colors as RGB hex strings.

The authenticated user.

The type of the user's storage quota. Possible values are:

  • LIMITED
  • UNLIMITED

The number of quota bytes used by all Google apps (Drive, Picasa, etc.).

List of max upload sizes for each file type. The most specific type takes precedence.

The current user's ID as visible in the permissions collection.

The name of the current user.

A list of themes that are supported for Team Drives.

The total number of quota bytes.

The number of remaining change ids, limited to no more than 2500.

The ETag of the item.

The allowable import formats.

The id of the root folder.

The largest change id.

The number of quota bytes used by trashed items.

The allowable export formats.

The domain sharing policy for the current user. Possible values are:

  • allowed
  • allowedWithWarning
  • incomingOnly
  • disallowed

A link back to this item.

A boolean indicating whether the authenticated app is installed by the authenticated user.

Trait Implementations

impl Default for About
[src]

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

impl Clone for About
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for About
[src]

Formats the value using the given formatter. Read more

impl ResponseResult for About
[src]

Auto Trait Implementations

impl Send for About

impl Sync for About