Struct onedrive::FileSystemInfo
source · pub struct FileSystemInfo {
pub created_date_time: String,
pub last_accessed_date_time: Option<String>,
pub last_modified_date_time: String,
}Expand description
Struct that contains properties that are reported by the device’s local file system for the local version of the item.
Fields§
§created_date_time: StringThe UTC date and time the file was created on a client.
last_accessed_date_time: Option<String>The UTC date and time the file was last accessed. Available for the recent file list only.
last_modified_date_time: StringThe UTC date and time the file was last modified on a client.
Trait Implementations§
source§impl Debug for FileSystemInfo
impl Debug for FileSystemInfo
source§impl<'de> Deserialize<'de> for FileSystemInfo
impl<'de> Deserialize<'de> for FileSystemInfo
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 RefUnwindSafe for FileSystemInfo
impl Send for FileSystemInfo
impl Sync for FileSystemInfo
impl Unpin for FileSystemInfo
impl UnwindSafe for FileSystemInfo
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