pub struct ScanResult {
pub entries: Vec<ScanEntry>,
pub skipped: usize,
pub duration: Duration,
}Expand description
Result of scanning a directory tree.
Fields§
§entries: Vec<ScanEntry>List of scanned file entries.
skipped: usizeNumber of files skipped by filters.
duration: DurationTotal scan duration.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ScanResult
impl RefUnwindSafe for ScanResult
impl Send for ScanResult
impl Sync for ScanResult
impl Unpin for ScanResult
impl UnsafeUnpin for ScanResult
impl UnwindSafe for ScanResult
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