pub struct CompactionReport {
pub deduplicated_records: u64,
pub archived_records: u64,
pub summarized_clusters: u64,
pub pruned_graph_edges: u64,
pub superseded_records: u64,
pub lineage_links_created: u64,
pub dry_run: bool,
}Fields§
§deduplicated_records: u64§archived_records: u64§summarized_clusters: u64§pruned_graph_edges: u64§superseded_records: u64§lineage_links_created: u64§dry_run: boolTrait Implementations§
Source§impl Clone for CompactionReport
impl Clone for CompactionReport
Source§fn clone(&self) -> CompactionReport
fn clone(&self) -> CompactionReport
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 CompactionReport
impl Debug for CompactionReport
Source§impl<'de> Deserialize<'de> for CompactionReport
impl<'de> Deserialize<'de> for CompactionReport
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for CompactionReport
impl PartialEq for CompactionReport
Source§fn eq(&self, other: &CompactionReport) -> bool
fn eq(&self, other: &CompactionReport) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for CompactionReport
impl Serialize for CompactionReport
impl Eq for CompactionReport
impl StructuralPartialEq for CompactionReport
Auto Trait Implementations§
impl Freeze for CompactionReport
impl RefUnwindSafe for CompactionReport
impl Send for CompactionReport
impl Sync for CompactionReport
impl Unpin for CompactionReport
impl UnsafeUnpin for CompactionReport
impl UnwindSafe for CompactionReport
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