pub struct FolderEntry {
pub name: String,
pub len: u64,
pub modified_millis: Option<u64>,
}Expand description
Display metadata for one file in a writable folder.
Fields§
§name: StringThe file name, as stored.
len: u64Byte length.
modified_millis: Option<u64>Last-modified time in milliseconds since the Unix epoch, when the provider reports one.
Trait Implementations§
Source§impl Clone for FolderEntry
impl Clone for FolderEntry
Source§impl Debug for FolderEntry
impl Debug for FolderEntry
Source§impl Default for FolderEntry
impl Default for FolderEntry
impl Eq for FolderEntry
Source§impl PartialEq for FolderEntry
impl PartialEq for FolderEntry
impl StructuralPartialEq for FolderEntry
Auto Trait Implementations§
impl Freeze for FolderEntry
impl RefUnwindSafe for FolderEntry
impl Send for FolderEntry
impl Sync for FolderEntry
impl Unpin for FolderEntry
impl UnsafeUnpin for FolderEntry
impl UnwindSafe for FolderEntry
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