pub struct DataOutputStats {
pub total_sent: u64,
pub total_resent: u64,
pub incoming_acknowledge_count: u64,
pub actual_acknowledge_count: u64,
}Expand description
Statistics gathered while sending reliable data.
Fields§
§total_sent: u64Total reliable data packets dispatched, including re-sends.
total_resent: u64Total reliable data packets that were re-sent.
incoming_acknowledge_count: u64Total acknowledgement packets received (including ack-alls).
actual_acknowledge_count: u64Total reliable data packets acknowledged (including via ack-all).
Trait Implementations§
Source§impl Clone for DataOutputStats
impl Clone for DataOutputStats
Source§fn clone(&self) -> DataOutputStats
fn clone(&self) -> DataOutputStats
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 DataOutputStats
impl Debug for DataOutputStats
Source§impl Default for DataOutputStats
impl Default for DataOutputStats
Source§fn default() -> DataOutputStats
fn default() -> DataOutputStats
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for DataOutputStats
impl RefUnwindSafe for DataOutputStats
impl Send for DataOutputStats
impl Sync for DataOutputStats
impl Unpin for DataOutputStats
impl UnsafeUnpin for DataOutputStats
impl UnwindSafe for DataOutputStats
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