Struct google_drive2::FileThumbnail[][src]

pub struct FileThumbnail {
    pub mime_type: Option<String>,
    pub image: Option<String>,
}

A thumbnail for the file. This will only be used if Drive cannot generate a standard thumbnail.

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

Fields

The MIME type of the thumbnail.

The URL-safe Base64 encoded bytes of the thumbnail image. It should conform to RFC 4648 section 5.

Trait Implementations

impl Default for FileThumbnail
[src]

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

impl Clone for FileThumbnail
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for FileThumbnail
[src]

Formats the value using the given formatter. Read more

impl NestedType for FileThumbnail
[src]

impl Part for FileThumbnail
[src]

Auto Trait Implementations