pub struct ClientConfig {
    pub socket_config: SocketConfig,
    pub send_handshake_interval: Duration,
    pub disconnection_timeout_duration: Duration,
    pub heartbeat_interval: Duration,
    pub ping_interval: Duration,
    pub rtt_sample_size: u16,
    pub minimum_command_latency: Option<Duration>,
}
Expand description

Contains Config properties which will be used by a Server or Client

Fields

socket_config: SocketConfig

Used to configure the Server’s underlying socket

send_handshake_interval: Duration

The duration between the resend of certain connection handshake messages

disconnection_timeout_duration: Duration

The duration to wait for communication from a remote host before initiating a disconnect

heartbeat_interval: Duration

The duration to wait before sending a heartbeat message to a remote host, if the host has not already sent another message within that time.

ping_interval: Duration

The duration to wait before sending a ping message to the remote host, in order to estimate RTT time

rtt_sample_size: u16

Number of samples to measure RTT & Jitter by. A higher number will smooth out RTT measurements, but at the cost of responsiveness.

minimum_command_latency: Option<Duration>

The minimum of measured latency to the Server that the Client use to ensure Command packets arrive in time. Should be fine if this is 0, but you’ll increase the chance that packets always arrive to be processed by the Server with a higher number. This is especially helpful early on in the connection, when estimates of latency are less accurate.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Returns the “default value” for a type. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The resulting type after obtaining ownership.

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

🔬 This is a nightly-only experimental API. (toowned_clone_into)

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

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.