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 moreAuto Trait Implementations§
impl Freeze for LinkConditionerConfig
impl RefUnwindSafe for LinkConditionerConfig
impl Send for LinkConditionerConfig
impl Sync for LinkConditionerConfig
impl Unpin for LinkConditionerConfig
impl UnwindSafe for LinkConditionerConfig
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)