pub struct Stats {Show 15 fields
pub recv: usize,
pub sent: usize,
pub lost: usize,
pub retrans: usize,
pub sent_bytes: u64,
pub recv_bytes: u64,
pub acked_bytes: u64,
pub lost_bytes: u64,
pub stream_retrans_bytes: u64,
pub paths_count: usize,
pub reset_stream_count_local: u64,
pub stopped_stream_count_local: u64,
pub reset_stream_count_remote: u64,
pub stopped_stream_count_remote: u64,
pub path_challenge_rx_count: u64,
}
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.
acked_bytes: u64
The number of bytes sent acked.
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.
reset_stream_count_local: u64
The number of streams reset by local.
stopped_stream_count_local: u64
The number of streams stopped by local.
reset_stream_count_remote: u64
The number of streams reset by remote.
stopped_stream_count_remote: u64
The number of streams stopped by remote.
path_challenge_rx_count: u64
The total number of PATH_CHALLENGE frames that were received.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Stats
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more