pub struct ScanEntry {
pub path: PathBuf,
pub size: u64,
pub modified: Option<SystemTime>,
}Expand description
A single scanned file entry.
Fields§
§path: PathBufAbsolute path to the file.
size: u64File size in bytes.
modified: Option<SystemTime>Last modification time.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ScanEntry
impl RefUnwindSafe for ScanEntry
impl Send for ScanEntry
impl Sync for ScanEntry
impl Unpin for ScanEntry
impl UnsafeUnpin for ScanEntry
impl UnwindSafe for ScanEntry
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