pub struct PimdirGcReport {
pub objects: usize,
pub blobs: usize,
pub bytes: u64,
}Available on crate feature
client only.Expand description
What a collection reclaimed.
Fields§
§objects: usizeObject rows dropped: bodies nothing references any more.
blobs: usizeBlob files unlinked: those rows’ bodies and the orphans a crash left, together.
bytes: u64The bytes those files freed.
Trait Implementations§
Source§impl Clone for PimdirGcReport
impl Clone for PimdirGcReport
Source§fn clone(&self) -> PimdirGcReport
fn clone(&self) -> PimdirGcReport
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for PimdirGcReport
Source§impl Debug for PimdirGcReport
impl Debug for PimdirGcReport
Source§impl Default for PimdirGcReport
impl Default for PimdirGcReport
Source§fn default() -> PimdirGcReport
fn default() -> PimdirGcReport
Returns the “default value” for a type. Read more
impl Eq for PimdirGcReport
Source§impl PartialEq for PimdirGcReport
impl PartialEq for PimdirGcReport
impl StructuralPartialEq for PimdirGcReport
Auto Trait Implementations§
impl Freeze for PimdirGcReport
impl RefUnwindSafe for PimdirGcReport
impl Send for PimdirGcReport
impl Sync for PimdirGcReport
impl Unpin for PimdirGcReport
impl UnsafeUnpin for PimdirGcReport
impl UnwindSafe for PimdirGcReport
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