pub struct QueueRuntimeStats {
pub rx_len: usize,
pub rx_bytes: usize,
pub tx_len: usize,
pub tx_bytes: usize,
pub replay_len: usize,
pub replay_bytes: usize,
pub recent_rx_len: usize,
pub recent_rx_bytes: usize,
pub reliable_rx_buffered_len: usize,
pub reliable_rx_buffered_bytes: usize,
pub shared_queue_bytes_used: usize,
}Fields§
§rx_len: usize§rx_bytes: usize§tx_len: usize§tx_bytes: usize§replay_len: usize§replay_bytes: usize§recent_rx_len: usize§recent_rx_bytes: usize§reliable_rx_buffered_len: usize§reliable_rx_buffered_bytes: usizeTrait Implementations§
Source§impl Clone for QueueRuntimeStats
impl Clone for QueueRuntimeStats
Source§fn clone(&self) -> QueueRuntimeStats
fn clone(&self) -> QueueRuntimeStats
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 QueueRuntimeStats
impl Debug for QueueRuntimeStats
impl Eq for QueueRuntimeStats
Source§impl PartialEq for QueueRuntimeStats
impl PartialEq for QueueRuntimeStats
Source§fn eq(&self, other: &QueueRuntimeStats) -> bool
fn eq(&self, other: &QueueRuntimeStats) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for QueueRuntimeStats
Auto Trait Implementations§
impl Freeze for QueueRuntimeStats
impl RefUnwindSafe for QueueRuntimeStats
impl Send for QueueRuntimeStats
impl Sync for QueueRuntimeStats
impl Unpin for QueueRuntimeStats
impl UnsafeUnpin for QueueRuntimeStats
impl UnwindSafe for QueueRuntimeStats
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