pub struct IntegrityTotals { /* private fields */ }Expand description
IntegrityTotals Aggregated integrity-scan counters across all stores.
Implementations§
Source§impl IntegrityTotals
impl IntegrityTotals
Sourcepub const fn data_rows_scanned(&self) -> u64
pub const fn data_rows_scanned(&self) -> u64
Return total number of data rows scanned.
Sourcepub const fn index_entries_scanned(&self) -> u64
pub const fn index_entries_scanned(&self) -> u64
Return total number of index entries scanned.
Sourcepub const fn corrupted_data_keys(&self) -> u64
pub const fn corrupted_data_keys(&self) -> u64
Return total number of corrupted data-key findings.
Sourcepub const fn corrupted_data_rows(&self) -> u64
pub const fn corrupted_data_rows(&self) -> u64
Return total number of corrupted data-row findings.
Sourcepub const fn corrupted_index_keys(&self) -> u64
pub const fn corrupted_index_keys(&self) -> u64
Return total number of corrupted index-key findings.
Sourcepub const fn corrupted_index_entries(&self) -> u64
pub const fn corrupted_index_entries(&self) -> u64
Return total number of corrupted index-entry findings.
Sourcepub const fn missing_index_entries(&self) -> u64
pub const fn missing_index_entries(&self) -> u64
Return total number of missing index-entry findings.
Sourcepub const fn divergent_index_entries(&self) -> u64
pub const fn divergent_index_entries(&self) -> u64
Return total number of divergent index-entry findings.
Sourcepub const fn orphan_index_references(&self) -> u64
pub const fn orphan_index_references(&self) -> u64
Return total number of orphan index-reference findings.
Sourcepub const fn compatibility_findings(&self) -> u64
pub const fn compatibility_findings(&self) -> u64
Return total number of compatibility findings.
Sourcepub const fn misuse_findings(&self) -> u64
pub const fn misuse_findings(&self) -> u64
Return total number of misuse findings.
Trait Implementations§
Source§impl CandidType for IntegrityTotals
impl CandidType for IntegrityTotals
Source§impl Clone for IntegrityTotals
impl Clone for IntegrityTotals
Source§fn clone(&self) -> IntegrityTotals
fn clone(&self) -> IntegrityTotals
Returns a duplicate of the value. Read more
1.0.0 · 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 IntegrityTotals
impl Debug for IntegrityTotals
Source§impl Default for IntegrityTotals
impl Default for IntegrityTotals
Source§fn default() -> IntegrityTotals
fn default() -> IntegrityTotals
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for IntegrityTotals
impl<'de> Deserialize<'de> for IntegrityTotals
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
Auto Trait Implementations§
impl Freeze for IntegrityTotals
impl RefUnwindSafe for IntegrityTotals
impl Send for IntegrityTotals
impl Sync for IntegrityTotals
impl Unpin for IntegrityTotals
impl UnsafeUnpin for IntegrityTotals
impl UnwindSafe for IntegrityTotals
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