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