#[repr(C)]pub struct rtcSctpSettings {
pub recvBufferSize: c_int,
pub sendBufferSize: c_int,
pub maxChunksOnQueue: c_int,
pub initialCongestionWindow: c_int,
pub maxBurst: c_int,
pub congestionControlModule: c_int,
pub delayedSackTimeMs: c_int,
pub minRetransmitTimeoutMs: c_int,
pub maxRetransmitTimeoutMs: c_int,
pub initialRetransmitTimeoutMs: c_int,
pub maxRetransmitAttempts: c_int,
pub heartbeatIntervalMs: c_int,
}Fields§
§recvBufferSize: c_int§sendBufferSize: c_int§maxChunksOnQueue: c_int§initialCongestionWindow: c_int§maxBurst: c_int§congestionControlModule: c_int§delayedSackTimeMs: c_int§minRetransmitTimeoutMs: c_int§maxRetransmitTimeoutMs: c_int§initialRetransmitTimeoutMs: c_int§maxRetransmitAttempts: c_int§heartbeatIntervalMs: c_intTrait Implementations§
Source§impl Clone for rtcSctpSettings
impl Clone for rtcSctpSettings
Source§fn clone(&self) -> rtcSctpSettings
fn clone(&self) -> rtcSctpSettings
Returns a duplicate 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 rtcSctpSettings
impl Debug for rtcSctpSettings
impl Copy for rtcSctpSettings
Auto Trait Implementations§
impl Freeze for rtcSctpSettings
impl RefUnwindSafe for rtcSctpSettings
impl Send for rtcSctpSettings
impl Sync for rtcSctpSettings
impl Unpin for rtcSctpSettings
impl UnwindSafe for rtcSctpSettings
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