pub struct PruneStats {
pub files_pruned: usize,
pub bytes_freed: u64,
}Expand description
Statistics from a prune operation.
Fields§
§files_pruned: usizeNumber of files pruned.
bytes_freed: u64Bytes freed.
Trait Implementations§
Source§impl Debug for PruneStats
impl Debug for PruneStats
Source§impl Default for PruneStats
impl Default for PruneStats
Source§fn default() -> PruneStats
fn default() -> PruneStats
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for PruneStats
impl RefUnwindSafe for PruneStats
impl Send for PruneStats
impl Sync for PruneStats
impl Unpin for PruneStats
impl UnwindSafe for PruneStats
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