pub struct PruneOutcome {
pub removed: usize,
pub kept: usize,
pub bytes_before: u64,
pub bytes_after: u64,
}Expand description
What a prune run did (or, when dry_run, would do).
Fields§
§removed: usizeRecords removed.
kept: usizeRecords retained.
bytes_before: u64File size before.
bytes_after: u64File size after (the size the retained records occupy).
Auto Trait Implementations§
impl Freeze for PruneOutcome
impl RefUnwindSafe for PruneOutcome
impl Send for PruneOutcome
impl Sync for PruneOutcome
impl Unpin for PruneOutcome
impl UnsafeUnpin for PruneOutcome
impl UnwindSafe for PruneOutcome
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