pub struct MvccGcStats {
pub versions_removed: usize,
pub keys_scanned: usize,
}Expand description
GC statistics returned by MvccStore::mvcc_gc.
Fields§
§versions_removed: usize§keys_scanned: usizeTrait Implementations§
Source§impl Clone for MvccGcStats
impl Clone for MvccGcStats
Source§fn clone(&self) -> MvccGcStats
fn clone(&self) -> MvccGcStats
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 moreSource§impl Debug for MvccGcStats
impl Debug for MvccGcStats
Source§impl Default for MvccGcStats
impl Default for MvccGcStats
Source§fn default() -> MvccGcStats
fn default() -> MvccGcStats
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for MvccGcStats
impl RefUnwindSafe for MvccGcStats
impl Send for MvccGcStats
impl Sync for MvccGcStats
impl Unpin for MvccGcStats
impl UnsafeUnpin for MvccGcStats
impl UnwindSafe for MvccGcStats
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