pub struct ReliableClientStats {
pub data_sent: usize,
pub retries_sent: usize,
pub acks_sent: usize,
pub acks_received: usize,
pub data_delivered: usize,
pub duplicates_suppressed: usize,
pub timed_out: usize,
}Expand description
Reliable client endpoint statistics.
Fields§
§data_sent: usizeNew reliable data packets sent.
retries_sent: usizeRetry data packets sent.
acks_sent: usizeACK packets sent.
acks_received: usizeACK packets received.
data_delivered: usizeUnique data packets delivered to the caller.
duplicates_suppressed: usizeDuplicate data packets suppressed.
timed_out: usizeIn-flight packets dropped after exhausting attempts.
Trait Implementations§
Source§impl Clone for ReliableClientStats
impl Clone for ReliableClientStats
Source§fn clone(&self) -> ReliableClientStats
fn clone(&self) -> ReliableClientStats
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 ReliableClientStats
Source§impl Debug for ReliableClientStats
impl Debug for ReliableClientStats
Source§impl Default for ReliableClientStats
impl Default for ReliableClientStats
Source§fn default() -> ReliableClientStats
fn default() -> ReliableClientStats
Returns the “default value” for a type. Read more
impl Eq for ReliableClientStats
Source§impl PartialEq for ReliableClientStats
impl PartialEq for ReliableClientStats
impl StructuralPartialEq for ReliableClientStats
Auto Trait Implementations§
impl Freeze for ReliableClientStats
impl RefUnwindSafe for ReliableClientStats
impl Send for ReliableClientStats
impl Sync for ReliableClientStats
impl Unpin for ReliableClientStats
impl UnsafeUnpin for ReliableClientStats
impl UnwindSafe for ReliableClientStats
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