Struct google_drive3::About[][src]

pub struct About {
    pub kind: Option<String>,
    pub export_formats: Option<HashMap<String, Vec<String>>>,
    pub team_drive_themes: Option<Vec<AboutTeamDriveThemes>>,
    pub max_import_sizes: Option<HashMap<String, String>>,
    pub storage_quota: Option<AboutStorageQuota>,
    pub import_formats: Option<HashMap<String, Vec<String>>>,
    pub app_installed: Option<bool>,
    pub folder_color_palette: Option<Vec<String>>,
    pub max_upload_size: Option<String>,
    pub user: Option<User>,
}

Information about the user, the user's Drive, and system capabilities.

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

Identifies what kind of resource this is. Value: the fixed string "drive#about".

A map of source MIME type to possible targets for all supported exports.

A list of themes that are supported for Team Drives.

A map of maximum import sizes by MIME type, in bytes.

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

A map of source MIME type to possible targets for all supported imports.

Whether the user has installed the requesting app.

The currently supported folder colors as RGB hex strings.

The maximum upload size in bytes.

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