pub struct FsEntry {
pub path: String,
pub name: String,
pub is_file: bool,
pub is_dir: bool,
pub len: u64,
pub modified: Option<SystemTime>,
}Fields§
§path: String§name: String§is_file: bool§is_dir: bool§len: u64§modified: Option<SystemTime>Trait Implementations§
Auto Trait Implementations§
impl Freeze for FsEntry
impl RefUnwindSafe for FsEntry
impl Send for FsEntry
impl Sync for FsEntry
impl Unpin for FsEntry
impl UnsafeUnpin for FsEntry
impl UnwindSafe for FsEntry
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