Struct srt_protocol::packet::AckStatistics
source · 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: RttRound trip time+variance
buffer_available: u32available 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<AckStatistics> for AckStatistics
impl PartialEq<AckStatistics> for AckStatistics
source§fn eq(&self, other: &AckStatistics) -> bool
fn eq(&self, other: &AckStatistics) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl Eq for AckStatistics
impl StructuralEq for AckStatistics
impl StructuralPartialEq for AckStatistics
Auto Trait Implementations§
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<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.