pub struct DataInputStats {
pub total_received: u64,
pub duplicate_count: u64,
pub out_of_order_count: u64,
pub total_received_bytes: u64,
pub acknowledge_count: u64,
}Expand description
Statistics gathered while receiving reliable data.
Fields§
§total_received: u64Total reliable data packets received, including duplicates.
duplicate_count: u64Number of duplicate reliable data packets received.
out_of_order_count: u64Number of reliable data packets received out of order.
total_received_bytes: u64Total application bytes received (excluding indicators/padding).
acknowledge_count: u64Number of acknowledgement packets emitted.
Trait Implementations§
Source§impl Clone for DataInputStats
impl Clone for DataInputStats
Source§fn clone(&self) -> DataInputStats
fn clone(&self) -> DataInputStats
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 DataInputStats
impl Debug for DataInputStats
Source§impl Default for DataInputStats
impl Default for DataInputStats
Source§fn default() -> DataInputStats
fn default() -> DataInputStats
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for DataInputStats
impl RefUnwindSafe for DataInputStats
impl Send for DataInputStats
impl Sync for DataInputStats
impl Unpin for DataInputStats
impl UnsafeUnpin for DataInputStats
impl UnwindSafe for DataInputStats
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