pub struct PacketKeyRingStats {
pub keys_inserted: usize,
pub keys_activated: usize,
pub keys_retired: usize,
pub keys_revoked: usize,
pub keys_expired_removed: usize,
}Expand description
Packet key ring maintenance statistics.
Fields§
§keys_inserted: usizeKey descriptors inserted.
keys_activated: usizeKey descriptors activated.
keys_retired: usizeKey descriptors moved to receive-only retirement.
keys_revoked: usizeKey descriptors revoked.
keys_expired_removed: usizeExpired key descriptors removed.
Trait Implementations§
Source§impl Clone for PacketKeyRingStats
impl Clone for PacketKeyRingStats
Source§fn clone(&self) -> PacketKeyRingStats
fn clone(&self) -> PacketKeyRingStats
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for PacketKeyRingStats
Source§impl Debug for PacketKeyRingStats
impl Debug for PacketKeyRingStats
Source§impl Default for PacketKeyRingStats
impl Default for PacketKeyRingStats
Source§fn default() -> PacketKeyRingStats
fn default() -> PacketKeyRingStats
Returns the “default value” for a type. Read more
impl Eq for PacketKeyRingStats
Source§impl PartialEq for PacketKeyRingStats
impl PartialEq for PacketKeyRingStats
impl StructuralPartialEq for PacketKeyRingStats
Auto Trait Implementations§
impl Freeze for PacketKeyRingStats
impl RefUnwindSafe for PacketKeyRingStats
impl Send for PacketKeyRingStats
impl Sync for PacketKeyRingStats
impl Unpin for PacketKeyRingStats
impl UnsafeUnpin for PacketKeyRingStats
impl UnwindSafe for PacketKeyRingStats
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