pub struct AuthStats {
pub signed: AtomicU64,
pub verified_ok: AtomicU64,
pub verified_fail: AtomicU64,
pub failures_allowed: AtomicU64,
pub skipped: AtomicU64,
}Expand description
Statistics for authentication operations.
Fields§
§signed: AtomicU64Number of symbols signed.
verified_ok: AtomicU64Number of symbols successfully verified.
verified_fail: AtomicU64Number of symbols that failed verification.
failures_allowed: AtomicU64Number of verification failures allowed (permissive mode).
skipped: AtomicU64Number of verifications skipped (disabled mode).
Trait Implementations§
Auto Trait Implementations§
impl !Freeze for AuthStats
impl RefUnwindSafe for AuthStats
impl Send for AuthStats
impl Sync for AuthStats
impl Unpin for AuthStats
impl UnsafeUnpin for AuthStats
impl UnwindSafe for AuthStats
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
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, _span: NoopSpan) -> Self
fn instrument(self, _span: NoopSpan) -> Self
Instruments this future with a span (no-op when disabled).
Source§fn in_current_span(self) -> Self
fn in_current_span(self) -> Self
Instruments this future with the current span (no-op when disabled).