pub struct PacketSecurityStats {
pub sealed: usize,
pub opened: usize,
pub key_rejected: usize,
pub auth_failed: usize,
pub replay_rejected: usize,
}Expand description
Packet security box statistics.
Fields§
§sealed: usizePackets sealed.
opened: usizePackets opened.
key_rejected: usizePackets rejected by key lifecycle policy.
auth_failed: usizePackets rejected because authentication failed.
replay_rejected: usizePackets rejected because the nonce was replayed.
Trait Implementations§
Source§impl Clone for PacketSecurityStats
impl Clone for PacketSecurityStats
Source§fn clone(&self) -> PacketSecurityStats
fn clone(&self) -> PacketSecurityStats
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 PacketSecurityStats
Source§impl Debug for PacketSecurityStats
impl Debug for PacketSecurityStats
Source§impl Default for PacketSecurityStats
impl Default for PacketSecurityStats
Source§fn default() -> PacketSecurityStats
fn default() -> PacketSecurityStats
Returns the “default value” for a type. Read more
impl Eq for PacketSecurityStats
Source§impl PartialEq for PacketSecurityStats
impl PartialEq for PacketSecurityStats
impl StructuralPartialEq for PacketSecurityStats
Auto Trait Implementations§
impl Freeze for PacketSecurityStats
impl RefUnwindSafe for PacketSecurityStats
impl Send for PacketSecurityStats
impl Sync for PacketSecurityStats
impl Unpin for PacketSecurityStats
impl UnsafeUnpin for PacketSecurityStats
impl UnwindSafe for PacketSecurityStats
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