pub struct LinkConditionerConfig {
pub incoming_latency: u32,
pub incoming_jitter: u32,
pub incoming_loss: f32,
}Expand description
Contains configuration required to initialize a LinkConditioner
Fields§
§incoming_latency: u32Delay to receive incoming messages in milliseconds
incoming_jitter: u32The 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: f32The % chance that an incoming packet will be dropped. Represented as a value between 0 and 1
Implementations§
Source§impl LinkConditionerConfig
impl LinkConditionerConfig
Sourcepub fn new(
incoming_latency: u32,
incoming_jitter: u32,
incoming_loss: f32,
) -> Self
pub fn new( incoming_latency: u32, incoming_jitter: u32, incoming_loss: f32, ) -> Self
Creates a new LinkConditionerConfig
pub fn perfect_condition() -> Self
Sourcepub fn very_good_condition() -> Self
pub fn very_good_condition() -> Self
Creates a new LinkConditioner that simulates a connection which is in a very good condition
Sourcepub fn good_condition() -> Self
pub fn good_condition() -> Self
Creates a new LinkConditioner that simulates a connection which is in a good condition
Sourcepub fn average_condition() -> Self
pub fn average_condition() -> Self
Creates a new LinkConditioner that simulates a connection which is in an average condition
Sourcepub fn poor_condition() -> Self
pub fn poor_condition() -> Self
Creates a new LinkConditioner that simulates a connection which is in an poor condition
Sourcepub fn very_poor_condition() -> Self
pub fn very_poor_condition() -> Self
Creates a new LinkConditioner that simulates a connection which is in an very poor condition
Trait Implementations§
Source§impl Clone for LinkConditionerConfig
impl Clone for LinkConditionerConfig
Source§fn clone(&self) -> LinkConditionerConfig
fn clone(&self) -> LinkConditionerConfig
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more