Struct google_drive::Drive[][src]

pub struct Drive {
    pub restrictions: Option<DriveRestrictions>,
    pub color_rgb: String,
    pub background_image_link: String,
    pub name: String,
    pub theme_id: String,
    pub kind: String,
    pub capabilities: Option<DriveCapabilities>,
    pub background_image_file: Option<DriveBackgroundImageFile>,
    pub created_time: String,
    pub hidden: bool,
    pub id: String,
}
Expand description

A drive.

Fields

restrictions: Option<DriveRestrictions>

A set of restrictions that apply to this shared drive or items inside this shared drive.

color_rgb: String

The color of this shared drive as an RGB hex string. It can only be set on a drive.drives.update request that does not set themeId.

background_image_link: String

A short-lived link to this shared drive’s background image.

name: String

The name of this shared drive.

theme_id: String

The ID of the theme from which the background image and color will be set. The set of possible driveThemes can be retrieved from a drive.about.get response. When not specified on a drive.drives.create request, a random theme is chosen from which the background image and color are set. This is a write-only field; it can only be set on requests that don’t set colorRgb or backgroundImageFile.

kind: String

Identifies what kind of resource this is. Value: the fixed string “drive#drive”.

capabilities: Option<DriveCapabilities>

Capabilities the current user has on this shared drive.

background_image_file: Option<DriveBackgroundImageFile>

An image file and cropping parameters from which a background image for this shared drive is set. This is a write only field; it can only be set on drive.drives.update requests that don’t set themeId. When specified, all fields of the backgroundImageFile must be set.

created_time: String

The time at which the shared drive was created (RFC 3339 date-time).

hidden: bool

Whether the shared drive is hidden from default view.

id: String

The ID of this shared drive which is also the ID of the top level folder of this shared drive.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Deserialize this value from the given Serde deserializer. Read more

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.