pub struct IntegrityStats {
pub total_verifications: usize,
pub total_verifications_passed: usize,
pub total_verifications_failed: usize,
pub checksum_verifications_passed: usize,
pub checksum_verifications_failed: usize,
pub version_verifications_passed: usize,
pub version_verifications_failed: usize,
pub corruption_detections: usize,
}Expand description
Integrity statistics
Fields§
§total_verifications: usizeTotal number of verifications
total_verifications_passed: usizeNumber of verifications that passed
total_verifications_failed: usizeNumber of verifications that failed
checksum_verifications_passed: usizeNumber of checksum verifications that passed
checksum_verifications_failed: usizeNumber of checksum verifications that failed
version_verifications_passed: usizeNumber of version verifications that passed
version_verifications_failed: usizeNumber of version verifications that failed
corruption_detections: usizeNumber of corruption detections
Implementations§
Trait Implementations§
Source§impl Clone for IntegrityStats
impl Clone for IntegrityStats
Source§fn clone(&self) -> IntegrityStats
fn clone(&self) -> IntegrityStats
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 IntegrityStats
impl Debug for IntegrityStats
Source§impl<'de> Deserialize<'de> for IntegrityStats
impl<'de> Deserialize<'de> for IntegrityStats
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 IntegrityStats
impl PartialEq for IntegrityStats
Source§impl Serialize for IntegrityStats
impl Serialize for IntegrityStats
impl StructuralPartialEq for IntegrityStats
Auto Trait Implementations§
impl Freeze for IntegrityStats
impl RefUnwindSafe for IntegrityStats
impl Send for IntegrityStats
impl Sync for IntegrityStats
impl Unpin for IntegrityStats
impl UnwindSafe for IntegrityStats
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