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: Byte
§total_size: Option<Byte>
§available_size: Option<Byte>
§is_mount_point: bool
§files: u64
§dirs: u64
§scan_duration: Duration
§used_memory: Option<Byte>
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ScanStats
impl RefUnwindSafe for ScanStats
impl Send for ScanStats
impl Sync for ScanStats
impl Unpin for ScanStats
impl UnwindSafe for ScanStats
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