#[repr(C)]pub struct rtcWsConfiguration {
pub disableTlsVerification: bool,
pub proxyServer: *const c_char,
pub protocols: *mut *const c_char,
pub protocolsCount: c_int,
pub connectionTimeoutMs: c_int,
pub pingIntervalMs: c_int,
pub maxOutstandingPings: c_int,
pub maxMessageSize: c_int,
}Fields§
§disableTlsVerification: bool§proxyServer: *const c_char§protocols: *mut *const c_char§protocolsCount: c_int§connectionTimeoutMs: c_int§pingIntervalMs: c_int§maxOutstandingPings: c_int§maxMessageSize: c_intTrait Implementations§
Source§impl Clone for rtcWsConfiguration
impl Clone for rtcWsConfiguration
Source§fn clone(&self) -> rtcWsConfiguration
fn clone(&self) -> rtcWsConfiguration
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for rtcWsConfiguration
Auto Trait Implementations§
impl !Send for rtcWsConfiguration
impl !Sync for rtcWsConfiguration
impl Freeze for rtcWsConfiguration
impl RefUnwindSafe for rtcWsConfiguration
impl Unpin for rtcWsConfiguration
impl UnsafeUnpin for rtcWsConfiguration
impl UnwindSafe for rtcWsConfiguration
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