[][src]Struct srt_protocol::packet::AckControlInfo

pub struct AckControlInfo {
    pub ack_seq_num: i32,
    pub ack_number: SeqNumber,
    pub rtt: Option<TimeSpan>,
    pub rtt_variance: Option<TimeSpan>,
    pub buffer_available: Option<i32>,
    pub packet_recv_rate: Option<u32>,
    pub est_link_cap: Option<i32>,
}

Fields

ack_seq_num: i32

The ack sequence number of this ack, increments for each ack sent. Stored in additional info

ack_number: SeqNumber

The packet sequence number that all packets have been recieved until (excluding)

rtt: Option<TimeSpan>

Round trip time

rtt_variance: Option<TimeSpan>

RTT variance

buffer_available: Option<i32>

available buffer

packet_recv_rate: Option<u32>

receive rate, in packets/sec

est_link_cap: Option<i32>

Estimated Link capacity

Trait Implementations

impl Clone for AckControlInfo[src]

impl Eq for AckControlInfo[src]

impl PartialEq<AckControlInfo> for AckControlInfo[src]

impl StructuralEq for AckControlInfo[src]

impl StructuralPartialEq for AckControlInfo[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,