[]Struct naia_server::LinkConditionerConfig

pub struct LinkConditionerConfig {
    pub incoming_latency: u32,
    pub incoming_jitter: u32,
    pub incoming_loss: f32,
    pub incoming_corruption: f32,
}

Contains configuration required to initialize a LinkConditioner

Fields

incoming_latency: u32

Delay to receive incoming messages in milliseconds

incoming_jitter: u32

The maximum additional random latency to delay received incoming messages in milliseconds. This may be added OR subtracted from the latency determined in the incoming_latency property above

incoming_loss: f32

The % chance that an incoming packet will be dropped. Represented as a value between 0 and 1

incoming_corruption: f32

The % chance that an incoming packet will have a single bit tampered with. Represented as a value between 0 and 1

Implementations

impl LinkConditionerConfig

pub fn new(
    incoming_latency: u32,
    incoming_jitter: u32,
    incoming_loss: f32,
    incoming_corruption: f32
) -> LinkConditionerConfig

Creates a new LinkConditionerConfig

pub fn good_condition() -> LinkConditionerConfig

Creates a new LinkConditioner that simulates a connection which is in a good condition

pub fn average_condition() -> LinkConditionerConfig

Creates a new LinkConditioner that simulates a connection which is in an average condition

pub fn poor_condition() -> LinkConditionerConfig

Creates a new LinkConditioner that simulates a connection which is in an poor condition

Trait Implementations

impl Clone for LinkConditionerConfig

impl Debug for LinkConditionerConfig

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> 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>,