pub struct CompactionResult {
pub clusters_affected: u32,
pub bytes_reclaimed: u64,
pub clusters_deduplicated: u32,
}Expand description
Result of a COW compaction operation.
Fields§
§clusters_affected: u32Number of clusters rewritten or reclaimed.
bytes_reclaimed: u64Bytes reclaimed (for space_reclaim mode).
clusters_deduplicated: u32Number of clusters that matched parent and were converted to ParentRef.
Auto Trait Implementations§
impl Freeze for CompactionResult
impl RefUnwindSafe for CompactionResult
impl Send for CompactionResult
impl Sync for CompactionResult
impl Unpin for CompactionResult
impl UnwindSafe for CompactionResult
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