pub struct DriveFile {
pub id: String,
pub name: String,
pub mime_type: String,
pub size: Option<String>,
pub created_time: Option<String>,
pub modified_time: Option<String>,
pub parents: Vec<String>,
pub web_view_link: Option<String>,
pub web_content_link: Option<String>,
}Fields§
§id: String§name: String§mime_type: String§size: Option<String>§created_time: Option<String>§modified_time: Option<String>§parents: Vec<String>§web_view_link: Option<String>§web_content_link: Option<String>Trait Implementations§
Source§impl<'de> Deserialize<'de> for DriveFile
impl<'de> Deserialize<'de> for DriveFile
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 DriveFile
impl RefUnwindSafe for DriveFile
impl Send for DriveFile
impl Sync for DriveFile
impl Unpin for DriveFile
impl UnsafeUnpin for DriveFile
impl UnwindSafe for DriveFile
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