Struct PathStats

Source
pub struct PathStats {
Show 22 fields pub local_addr: SocketAddr, pub peer_addr: SocketAddr, pub validation_state: PathState, pub active: bool, pub recv: usize, pub sent: usize, pub lost: usize, pub retrans: usize, pub dgram_recv: usize, pub dgram_sent: usize, pub rtt: Duration, pub min_rtt: Option<Duration>, pub max_rtt: Option<Duration>, pub rttvar: Duration, pub cwnd: usize, pub sent_bytes: u64, pub recv_bytes: u64, pub lost_bytes: u64, pub stream_retrans_bytes: u64, pub pmtu: usize, pub delivery_rate: u64, pub startup_exit: Option<StartupExit>,
}
Expand description

Statistics about the path of a connection.

A connection’s path statistics can be collected using the path_stats() method.

Fields§

§local_addr: SocketAddr

The local address of the path.

§peer_addr: SocketAddr

The peer address of the path.

§validation_state: PathState

The path validation state.

§active: bool

Whether the path is marked as active.

§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.

§dgram_recv: usize

The number of DATAGRAM frames received.

§dgram_sent: usize

The number of DATAGRAM frames sent.

§rtt: Duration

The estimated round-trip time of the connection.

§min_rtt: Option<Duration>

The minimum round-trip time observed.

§max_rtt: Option<Duration>

The maximum round-trip time observed.

§rttvar: Duration

The estimated round-trip time variation in samples using a mean variation.

§cwnd: usize

The size of the connection’s congestion window in bytes.

§sent_bytes: u64

The number of sent bytes.

§recv_bytes: u64

The number of received bytes.

§lost_bytes: u64

The number of bytes lost.

§stream_retrans_bytes: u64

The number of stream bytes retransmitted.

§pmtu: usize

The current PMTU for the connection.

§delivery_rate: u64

The most recent data delivery rate estimate in bytes/s.

Note that this value could be inaccurate if the application does not respect pacing hints (see SendInfo.at and Pacing for more details).

§startup_exit: Option<StartupExit>

Statistics from when a CCA first exited the startup phase.

Trait Implementations§

Source§

impl Clone for PathStats

Source§

fn clone(&self) -> PathStats

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for PathStats

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

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 more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

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
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.