pub struct CleanStats {
pub pending_checked: usize,
pub still_running: usize,
pub orphaned: usize,
pub pruned_files: usize,
pub bytes_freed: u64,
}Expand description
Statistics from a clean operation.
Fields§
§pending_checked: usizeNumber of pending files checked.
still_running: usizeNumber of invocations still running.
orphaned: usizeNumber of invocations marked as orphaned.
pruned_files: usizeNumber of archive files pruned.
bytes_freed: u64Bytes freed from pruning.
Trait Implementations§
Source§impl Debug for CleanStats
impl Debug for CleanStats
Source§impl Default for CleanStats
impl Default for CleanStats
Source§fn default() -> CleanStats
fn default() -> CleanStats
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for CleanStats
impl RefUnwindSafe for CleanStats
impl Send for CleanStats
impl Sync for CleanStats
impl Unpin for CleanStats
impl UnwindSafe for CleanStats
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