pub struct AckStatistics {
pub rtt: Rtt,
pub buffer_available: u32,
pub packet_receive_rate: Option<u32>,
pub estimated_link_capacity: Option<u32>,
pub data_receive_rate: Option<u32>,
}
Fields§
§rtt: Rtt
Round trip time+variance
buffer_available: u32
available buffer, in packets
packet_receive_rate: Option<u32>
receive rate, in packets/sec
estimated_link_capacity: Option<u32>
Estimated Link capacity in packets/sec
data_receive_rate: Option<u32>
Receive rate, in bytes/sec
Trait Implementations§
Source§impl Clone for AckStatistics
impl Clone for AckStatistics
Source§fn clone(&self) -> AckStatistics
fn clone(&self) -> AckStatistics
Returns a copy of the value. Read more
1.0.0 · 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 AckStatistics
impl Debug for AckStatistics
Source§impl PartialEq for AckStatistics
impl PartialEq for AckStatistics
impl Eq for AckStatistics
impl StructuralPartialEq for AckStatistics
Auto Trait Implementations§
impl Freeze for AckStatistics
impl RefUnwindSafe for AckStatistics
impl Send for AckStatistics
impl Sync for AckStatistics
impl Unpin for AckStatistics
impl UnwindSafe for AckStatistics
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§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.