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
mime_type: Option<String>
The MIME type of the thumbnail.
image: Option<String>
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]
fn default() -> FileThumbnail[src]
Returns the "default value" for a type. Read more
impl Clone for FileThumbnail[src]
fn clone(&self) -> FileThumbnail[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more