pub struct ScanStats {
pub used_size: Byte,
pub total_size: Option<Byte>,
pub available_size: Option<Byte>,
pub is_mount_point: bool,
pub files: u64,
pub dirs: u64,
pub scan_duration: Duration,
pub used_memory: Option<Byte>,
}Fields
used_size: Bytetotal_size: Option<Byte>available_size: Option<Byte>is_mount_point: boolfiles: u64dirs: u64scan_duration: Durationused_memory: Option<Byte>Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for ScanStats
impl Send for ScanStats
impl Sync for ScanStats
impl Unpin for ScanStats
impl UnwindSafe for ScanStats
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more