pub struct ListenerStatistics {Show 13 fields
pub rx_packets: u64,
pub rx_bytes: u64,
pub rx_parse_errors: u64,
pub rx_io_errors: u64,
pub tx_packets: u64,
pub tx_bytes: u64,
pub delegated_packets: u64,
pub delegated_bytes: u64,
pub cx_inbound: u64,
pub cx_opened: u64,
pub cx_dropped: u64,
pub cx_rejected: u64,
pub cx_accepted: u64,
}
Fields§
§rx_packets: u64
§rx_bytes: u64
§rx_parse_errors: u64
§rx_io_errors: u64
§tx_packets: u64
§tx_bytes: u64
§delegated_packets: u64
§delegated_bytes: u64
§cx_inbound: u64
§cx_opened: u64
§cx_dropped: u64
§cx_rejected: u64
§cx_accepted: u64
Trait Implementations§
Source§impl Clone for ListenerStatistics
impl Clone for ListenerStatistics
Source§fn clone(&self) -> ListenerStatistics
fn clone(&self) -> ListenerStatistics
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 ListenerStatistics
impl Debug for ListenerStatistics
Source§impl Default for ListenerStatistics
impl Default for ListenerStatistics
Source§fn default() -> ListenerStatistics
fn default() -> ListenerStatistics
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListenerStatistics
impl PartialEq for ListenerStatistics
impl Eq for ListenerStatistics
impl StructuralPartialEq for ListenerStatistics
Auto Trait Implementations§
impl Freeze for ListenerStatistics
impl RefUnwindSafe for ListenerStatistics
impl Send for ListenerStatistics
impl Sync for ListenerStatistics
impl Unpin for ListenerStatistics
impl UnwindSafe for ListenerStatistics
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.