pub struct MixerConfig {
pub min_delay: Duration,
pub delay_range: Duration,
pub capacity: usize,
pub metric_delay_window: u64,
}
Expand description
Mixer configuration.
Fields§
§min_delay: Duration
The minimum delay introduced during mixing.
delay_range: Duration
The range from the minimum delay to the maximum possible delay.
capacity: usize
The capacity of the preallocated mixer buffer.
It is possible to insert more items past the capacity, triggering a possible buffer reallocation.
metric_delay_window: u64
Implementations§
Source§impl MixerConfig
impl MixerConfig
Sourcepub fn random_delay(&self) -> Duration
pub fn random_delay(&self) -> Duration
Get a random delay duration from the specified minimum and maximum delay available inside the configuration.
Trait Implementations§
Source§impl Clone for MixerConfig
impl Clone for MixerConfig
Source§fn clone(&self) -> MixerConfig
fn clone(&self) -> MixerConfig
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for MixerConfig
impl Debug for MixerConfig
Source§impl Default for MixerConfig
impl Default for MixerConfig
Source§impl PartialEq for MixerConfig
impl PartialEq for MixerConfig
impl Copy for MixerConfig
impl Eq for MixerConfig
impl StructuralPartialEq for MixerConfig
Auto Trait Implementations§
impl Freeze for MixerConfig
impl RefUnwindSafe for MixerConfig
impl Send for MixerConfig
impl Sync for MixerConfig
impl Unpin for MixerConfig
impl UnwindSafe for MixerConfig
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
Mutably borrows from an owned value. Read more