pub struct GoogleDriveFile {
pub id: String,
pub name: String,
pub mime_type: String,
pub is_folder: Option<bool>,
}Fields§
§id: String§name: String§mime_type: String§is_folder: Option<bool>Implementations§
Trait Implementations§
Source§impl Clone for GoogleDriveFile
impl Clone for GoogleDriveFile
Source§fn clone(&self) -> GoogleDriveFile
fn clone(&self) -> GoogleDriveFile
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for GoogleDriveFile
impl Debug for GoogleDriveFile
Source§impl Default for GoogleDriveFile
impl Default for GoogleDriveFile
Source§fn default() -> GoogleDriveFile
fn default() -> GoogleDriveFile
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GoogleDriveFile
impl<'de> Deserialize<'de> for GoogleDriveFile
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
Source§impl PartialEq for GoogleDriveFile
impl PartialEq for GoogleDriveFile
Source§impl Serialize for GoogleDriveFile
impl Serialize for GoogleDriveFile
impl StructuralPartialEq for GoogleDriveFile
Auto Trait Implementations§
impl Freeze for GoogleDriveFile
impl RefUnwindSafe for GoogleDriveFile
impl Send for GoogleDriveFile
impl Sync for GoogleDriveFile
impl Unpin for GoogleDriveFile
impl UnsafeUnpin for GoogleDriveFile
impl UnwindSafe for GoogleDriveFile
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