pub struct EncryptedWatchdogStats {
pub checks: u64,
pub encrypted_violations: u64,
pub decrypted_checks: u64,
}Expand description
Stats for encrypted watchdog
Fields§
§checks: u64Checks performed
encrypted_violations: u64Violations detected (encrypted)
decrypted_checks: u64Decrypted checks (requires key holder)
Trait Implementations§
Source§impl Clone for EncryptedWatchdogStats
impl Clone for EncryptedWatchdogStats
Source§fn clone(&self) -> EncryptedWatchdogStats
fn clone(&self) -> EncryptedWatchdogStats
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 EncryptedWatchdogStats
impl Debug for EncryptedWatchdogStats
Source§impl Default for EncryptedWatchdogStats
impl Default for EncryptedWatchdogStats
Source§fn default() -> EncryptedWatchdogStats
fn default() -> EncryptedWatchdogStats
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for EncryptedWatchdogStats
impl RefUnwindSafe for EncryptedWatchdogStats
impl Send for EncryptedWatchdogStats
impl Sync for EncryptedWatchdogStats
impl Unpin for EncryptedWatchdogStats
impl UnwindSafe for EncryptedWatchdogStats
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