pub struct Thumbnail {
pub image: Option<String>,
pub mime_type: Option<String>,
}Expand description
A thumbnail for the file.
This will only be used if Google Drive cannot generate a standard thumbnail.
Fields§
§image: Option<String>The thumbnail data encoded with URL-safe Base64 (RFC 4648 section 5).
mime_type: Option<String>The MIME type of the thumbnail.
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Thumbnail
impl<'de> Deserialize<'de> for Thumbnail
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for Thumbnail
impl RefUnwindSafe for Thumbnail
impl Send for Thumbnail
impl Sync for Thumbnail
impl Unpin for Thumbnail
impl UnwindSafe for Thumbnail
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more