[][src]Struct tsproto::resend::ResendConfig

pub struct ResendConfig {
    pub connecting_interval: Duration,
    pub connecting_timeout: Duration,
    pub normal_timeout: Duration,
    pub stalling_interval: Duration,
    pub stalling_timeout: Duration,
    pub dead_timeout: Duration,
    pub disconnect_timeout: Duration,
    pub disconnect_interval: Duration,
    pub srtt: Duration,
    pub srtt_dev: Duration,
    pub max_send_queue_len: usize,
}

Configure the length of timeouts.

Fields

connecting_interval: Duration

Interval to resend the first packet.

connecting_timeout: Duration

Timeout to give up sending the first packet and close the connection.

normal_timeout: Duration

Swith to Stalling when no awaited response was received after this duration (added to the current estimated response time).

stalling_interval: Duration

Interval to resend the first packet in Stalling mode.

stalling_timeout: Duration

Switch to Dead when no awaited response was received after this duration.

dead_timeout: Duration

When in Dead state, close the connection after no packet is received for this duration.

disconnect_timeout: Duration

When in Disconnecting state, close the connection after no packet is received for this duration.

disconnect_interval: Duration

Interval to resend the disconnect packet.

srtt: Duration

Start value for the Smoothed Round Trip Time.

srtt_dev: Duration

Start value for the deviation of the srtt.

max_send_queue_len: usize

The maximum number of not acknowledged packets which are stored.

Trait Implementations

impl Clone for ResendConfig[src]

default fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Default for ResendConfig[src]

impl Debug for ResendConfig[src]

Auto Trait Implementations

Blanket Implementations

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

type Owned = T

impl<T> From for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

impl<T, U> TryInto 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<T> Same for T

type Output = T

Should always be Self

impl<T> Clear for T where
    T: InitializableFromZeroed + ?Sized

impl<T> InitializableFromZeroed for T where
    T: Default

impl<T> Erased for T

impl<T> SendSyncUnwindSafe for T where
    T: Send + Sync + UnwindSafe + ?Sized
[src]