pub struct StoreStats {
pub total: usize,
pub active: usize,
pub expired: usize,
pub revoked: usize,
pub stale: usize,
pub pending_approval: usize,
pub rejected: usize,
pub scheduled_revocation: usize,
}Expand description
Statistics about the suppression store
Fields§
§total: usize§active: usize§expired: usize§revoked: usize§stale: usize§pending_approval: usize§rejected: usize§scheduled_revocation: usizeTrait Implementations§
Source§impl Clone for StoreStats
impl Clone for StoreStats
Source§fn clone(&self) -> StoreStats
fn clone(&self) -> StoreStats
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 StoreStats
impl Debug for StoreStats
Source§impl Default for StoreStats
impl Default for StoreStats
Source§fn default() -> StoreStats
fn default() -> StoreStats
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for StoreStats
impl RefUnwindSafe for StoreStats
impl Send for StoreStats
impl Sync for StoreStats
impl Unpin for StoreStats
impl UnwindSafe for StoreStats
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