pub struct CleanupStats {
pub removed_count: usize,
pub freed_bytes: u64,
}Expand description
Cleanup statistics
Fields§
§removed_count: usizeNumber of entries removed
freed_bytes: u64Bytes freed
Trait Implementations§
Source§impl Clone for CleanupStats
impl Clone for CleanupStats
Source§fn clone(&self) -> CleanupStats
fn clone(&self) -> CleanupStats
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for CleanupStats
impl Debug for CleanupStats
Source§impl Default for CleanupStats
impl Default for CleanupStats
Source§fn default() -> CleanupStats
fn default() -> CleanupStats
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for CleanupStats
impl RefUnwindSafe for CleanupStats
impl Send for CleanupStats
impl Sync for CleanupStats
impl Unpin for CleanupStats
impl UnsafeUnpin for CleanupStats
impl UnwindSafe for CleanupStats
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