pub struct RuntimeTypeStats {
pub data_type: DataType,
pub tx_packets: u64,
pub tx_bytes: u64,
pub rx_packets: u64,
pub rx_bytes: u64,
pub relayed_tx_packets: u64,
pub relayed_tx_bytes: u64,
pub relayed_rx_packets: u64,
pub relayed_rx_bytes: u64,
pub tx_retries: u64,
pub handler_failures: u64,
}Fields§
§data_type: DataType§tx_packets: u64§tx_bytes: u64§rx_packets: u64§rx_bytes: u64§relayed_tx_packets: u64§relayed_tx_bytes: u64§relayed_rx_packets: u64§relayed_rx_bytes: u64§tx_retries: u64§handler_failures: u64Trait Implementations§
Source§impl Clone for RuntimeTypeStats
impl Clone for RuntimeTypeStats
Source§fn clone(&self) -> RuntimeTypeStats
fn clone(&self) -> RuntimeTypeStats
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 moreSource§impl Debug for RuntimeTypeStats
impl Debug for RuntimeTypeStats
impl Eq for RuntimeTypeStats
Source§impl PartialEq for RuntimeTypeStats
impl PartialEq for RuntimeTypeStats
Source§fn eq(&self, other: &RuntimeTypeStats) -> bool
fn eq(&self, other: &RuntimeTypeStats) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for RuntimeTypeStats
Auto Trait Implementations§
impl Freeze for RuntimeTypeStats
impl RefUnwindSafe for RuntimeTypeStats
impl Send for RuntimeTypeStats
impl Sync for RuntimeTypeStats
impl Unpin for RuntimeTypeStats
impl UnsafeUnpin for RuntimeTypeStats
impl UnwindSafe for RuntimeTypeStats
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