pub struct GoogleDriveFile {
pub id: String,
pub name: String,
pub is_folder: bool,
pub size: Option<u64>,
}Expand description
Represents a file or folder in Google Drive
Fields§
§id: String§name: String§is_folder: bool§size: Option<u64>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 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto 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