pub struct VacuumStats {
pub scanned: u64,
pub compacted: u64,
}Fields§
§scanned: u64§compacted: u64Trait Implementations§
Source§impl Clone for VacuumStats
impl Clone for VacuumStats
Source§fn clone(&self) -> VacuumStats
fn clone(&self) -> VacuumStats
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 VacuumStats
Source§impl Debug for VacuumStats
impl Debug for VacuumStats
Source§impl Default for VacuumStats
impl Default for VacuumStats
Source§fn default() -> VacuumStats
fn default() -> VacuumStats
Returns the “default value” for a type. Read more
impl Eq for VacuumStats
Source§impl PartialEq for VacuumStats
impl PartialEq for VacuumStats
Source§fn eq(&self, other: &VacuumStats) -> bool
fn eq(&self, other: &VacuumStats) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for VacuumStats
Auto Trait Implementations§
impl Freeze for VacuumStats
impl RefUnwindSafe for VacuumStats
impl Send for VacuumStats
impl Sync for VacuumStats
impl Unpin for VacuumStats
impl UnsafeUnpin for VacuumStats
impl UnwindSafe for VacuumStats
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