pub struct Stats {
pub recv: usize,
pub sent: usize,
pub lost: usize,
pub retrans: usize,
pub sent_bytes: u64,
pub recv_bytes: u64,
pub lost_bytes: u64,
pub stream_retrans_bytes: u64,
pub paths_count: usize,
}
Expand description
Statistics about the connection.
A connection’s statistics can be collected using the stats()
method.
Fields§
§recv: usize
The number of QUIC packets received.
sent: usize
The number of QUIC packets sent.
lost: usize
The number of QUIC packets that were lost.
retrans: usize
The number of sent QUIC packets with retransmitted data.
sent_bytes: u64
The number of sent bytes.
recv_bytes: u64
The number of received bytes.
lost_bytes: u64
The number of bytes sent lost.
stream_retrans_bytes: u64
The number of stream bytes retransmitted.
paths_count: usize
The number of known paths for the connection.
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for Stats
impl Send for Stats
impl Sync for Stats
impl Unpin for Stats
impl UnwindSafe for Stats
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