pub struct VerificationStats {
pub total_verified: i64,
pub total_valid: i64,
pub total_invalid: i64,
pub total_unknown: i64,
pub total_verifications: i64,
pub valid_percentage: f64,
}Expand description
Verification statistics
Fields§
§total_verified: i64§total_valid: i64§total_invalid: i64§total_unknown: i64§total_verifications: i64§valid_percentage: f64Trait Implementations§
Source§impl Clone for VerificationStats
impl Clone for VerificationStats
Source§fn clone(&self) -> VerificationStats
fn clone(&self) -> VerificationStats
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 VerificationStats
impl Debug for VerificationStats
Source§impl<'de> Deserialize<'de> for VerificationStats
impl<'de> Deserialize<'de> for VerificationStats
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 VerificationStats
impl RefUnwindSafe for VerificationStats
impl Send for VerificationStats
impl Sync for VerificationStats
impl Unpin for VerificationStats
impl UnwindSafe for VerificationStats
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