pub struct OneDriveFile {
pub id: String,
pub name: String,
pub is_folder: bool,
}Fields§
§id: String§name: String§is_folder: boolTrait Implementations§
Source§impl Clone for OneDriveFile
impl Clone for OneDriveFile
Source§fn clone(&self) -> OneDriveFile
fn clone(&self) -> OneDriveFile
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 moreSource§impl Debug for OneDriveFile
impl Debug for OneDriveFile
Source§impl Default for OneDriveFile
impl Default for OneDriveFile
Source§fn default() -> OneDriveFile
fn default() -> OneDriveFile
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for OneDriveFile
impl RefUnwindSafe for OneDriveFile
impl Send for OneDriveFile
impl Sync for OneDriveFile
impl Unpin for OneDriveFile
impl UnsafeUnpin for OneDriveFile
impl UnwindSafe for OneDriveFile
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