pub struct ReliableStationStats {
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 station 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 ReliableStationStats
impl Clone for ReliableStationStats
Source§fn clone(&self) -> ReliableStationStats
fn clone(&self) -> ReliableStationStats
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 ReliableStationStats
Source§impl Debug for ReliableStationStats
impl Debug for ReliableStationStats
Source§impl Default for ReliableStationStats
impl Default for ReliableStationStats
Source§fn default() -> ReliableStationStats
fn default() -> ReliableStationStats
Returns the “default value” for a type. Read more
impl Eq for ReliableStationStats
Source§impl PartialEq for ReliableStationStats
impl PartialEq for ReliableStationStats
impl StructuralPartialEq for ReliableStationStats
Auto Trait Implementations§
impl Freeze for ReliableStationStats
impl RefUnwindSafe for ReliableStationStats
impl Send for ReliableStationStats
impl Sync for ReliableStationStats
impl Unpin for ReliableStationStats
impl UnsafeUnpin for ReliableStationStats
impl UnwindSafe for ReliableStationStats
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