pub struct CongestionWindowConfig {
pub queue_size_ms: i64,
pub min_bitrate_bps: i64,
pub initial_data_window: Option<DataSize>,
pub drop_frame_only: bool,
}
Expand description
WebRTC-CongestionWindow
Fields§
§queue_size_ms: i64
§min_bitrate_bps: i64
§initial_data_window: Option<DataSize>
§drop_frame_only: bool
Trait Implementations§
Source§impl Clone for CongestionWindowConfig
impl Clone for CongestionWindowConfig
Source§fn clone(&self) -> CongestionWindowConfig
fn clone(&self) -> CongestionWindowConfig
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for CongestionWindowConfig
impl Debug for CongestionWindowConfig
Auto Trait Implementations§
impl Freeze for CongestionWindowConfig
impl RefUnwindSafe for CongestionWindowConfig
impl Send for CongestionWindowConfig
impl Sync for CongestionWindowConfig
impl Unpin for CongestionWindowConfig
impl UnwindSafe for CongestionWindowConfig
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