pub struct VacuumReport {
pub removed_node_count: usize,
}Expand description
Result of a RuntimePersistence::vacuum() call.
removed_node_count counts the tombstoned graph-node rows that were
physically deleted from the store. Returned so hosts can emit metrics.
Fields§
§removed_node_count: usizeTrait Implementations§
Source§impl Clone for VacuumReport
impl Clone for VacuumReport
Source§fn clone(&self) -> VacuumReport
fn clone(&self) -> VacuumReport
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 VacuumReport
impl Debug for VacuumReport
Source§impl Default for VacuumReport
impl Default for VacuumReport
Source§fn default() -> VacuumReport
fn default() -> VacuumReport
Returns the “default value” for a type. Read more
impl Eq for VacuumReport
Source§impl PartialEq for VacuumReport
impl PartialEq for VacuumReport
Source§fn eq(&self, other: &VacuumReport) -> bool
fn eq(&self, other: &VacuumReport) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for VacuumReport
Auto Trait Implementations§
impl Freeze for VacuumReport
impl RefUnwindSafe for VacuumReport
impl Send for VacuumReport
impl Sync for VacuumReport
impl Unpin for VacuumReport
impl UnsafeUnpin for VacuumReport
impl UnwindSafe for VacuumReport
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