pub struct IndexedMapMetricsSnapshot {Show 14 fields
pub normalized_source_mutations: u64,
pub records_extracted: u64,
pub terms_emitted: u64,
pub projected_bytes: u64,
pub physical_upserts: u64,
pub physical_deletes: u64,
pub unchanged_emissions_skipped: u64,
pub source_nodes_written: u64,
pub index_nodes_written: u64,
pub catalog_nodes_written: u64,
pub retries: u64,
pub build_attempts: u64,
pub verification_outcomes: u64,
pub retained_roots: u64,
}Expand description
Cumulative logical work counters for one IndexedMap handle.
Fields§
§normalized_source_mutations: u64§records_extracted: u64§terms_emitted: u64§projected_bytes: u64§physical_upserts: u64§physical_deletes: u64§unchanged_emissions_skipped: u64§source_nodes_written: u64§index_nodes_written: u64§catalog_nodes_written: u64§retries: u64§build_attempts: u64§verification_outcomes: u64§retained_roots: u64Trait Implementations§
Source§impl Clone for IndexedMapMetricsSnapshot
impl Clone for IndexedMapMetricsSnapshot
Source§fn clone(&self) -> IndexedMapMetricsSnapshot
fn clone(&self) -> IndexedMapMetricsSnapshot
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 IndexedMapMetricsSnapshot
impl Debug for IndexedMapMetricsSnapshot
Source§impl Default for IndexedMapMetricsSnapshot
impl Default for IndexedMapMetricsSnapshot
Source§fn default() -> IndexedMapMetricsSnapshot
fn default() -> IndexedMapMetricsSnapshot
Returns the “default value” for a type. Read more
impl Eq for IndexedMapMetricsSnapshot
impl StructuralPartialEq for IndexedMapMetricsSnapshot
Auto Trait Implementations§
impl Freeze for IndexedMapMetricsSnapshot
impl RefUnwindSafe for IndexedMapMetricsSnapshot
impl Send for IndexedMapMetricsSnapshot
impl Sync for IndexedMapMetricsSnapshot
impl Unpin for IndexedMapMetricsSnapshot
impl UnsafeUnpin for IndexedMapMetricsSnapshot
impl UnwindSafe for IndexedMapMetricsSnapshot
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more