[][src]Struct web_sys::RtcDataChannelInit

#[repr(transparent)]
pub struct RtcDataChannelInit { /* fields omitted */ }

The RTCDataChannelInit dictionary

This API requires the following crate features to be activated: RtcDataChannelInit

Methods

impl RtcDataChannelInit[src]

pub fn new() -> RtcDataChannelInit[src]

Construct a new RTCDataChannelInit

This API requires the following crate features to be activated: RtcDataChannelInit

pub fn id(&mut self, val: u16) -> &mut Self[src]

Configure the id field of this object

This API requires the following crate features to be activated: RtcDataChannelInit

pub fn max_packet_life_time(&mut self, val: u16) -> &mut Self[src]

Configure the maxPacketLifeTime field of this object

This API requires the following crate features to be activated: RtcDataChannelInit

pub fn max_retransmit_time(&mut self, val: u16) -> &mut Self[src]

Configure the maxRetransmitTime field of this object

This API requires the following crate features to be activated: RtcDataChannelInit

pub fn max_retransmits(&mut self, val: u16) -> &mut Self[src]

Configure the maxRetransmits field of this object

This API requires the following crate features to be activated: RtcDataChannelInit

pub fn negotiated(&mut self, val: bool) -> &mut Self[src]

Configure the negotiated field of this object

This API requires the following crate features to be activated: RtcDataChannelInit

pub fn ordered(&mut self, val: bool) -> &mut Self[src]

Configure the ordered field of this object

This API requires the following crate features to be activated: RtcDataChannelInit

pub fn protocol(&mut self, val: &str) -> &mut Self[src]

Configure the protocol field of this object

This API requires the following crate features to be activated: RtcDataChannelInit

Trait Implementations

impl AsRef<JsValue> for RtcDataChannelInit[src]

impl Clone for RtcDataChannelInit[src]

impl Debug for RtcDataChannelInit[src]

impl From<RtcDataChannelInit> for JsValue[src]

impl FromWasmAbi for RtcDataChannelInit[src]

type Abi = <Object as FromWasmAbi>::Abi

The wasm ABI type that this converts from when coming back out from the ABI boundary. Read more

impl IntoWasmAbi for RtcDataChannelInit[src]

type Abi = <Object as IntoWasmAbi>::Abi

The wasm ABI type that this converts into when crossing the ABI boundary. Read more

impl<'a> IntoWasmAbi for &'a RtcDataChannelInit[src]

type Abi = <&'a Object as IntoWasmAbi>::Abi

The wasm ABI type that this converts into when crossing the ABI boundary. Read more

impl JsCast for RtcDataChannelInit[src]

impl OptionFromWasmAbi for RtcDataChannelInit[src]

impl OptionIntoWasmAbi for RtcDataChannelInit[src]

impl<'a> OptionIntoWasmAbi for &'a RtcDataChannelInit[src]

impl RefFromWasmAbi for RtcDataChannelInit[src]

type Abi = <Object as RefFromWasmAbi>::Abi

The wasm ABI type references to Self are recovered from.

type Anchor = ManuallyDrop<RtcDataChannelInit>

The type that holds the reference to Self for the duration of the invocation of the function that has an &Self parameter. This is required to ensure that the lifetimes don't persist beyond one function call, and so that they remain anonymous. Read more

impl WasmDescribe for RtcDataChannelInit[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ReturnWasmAbi for T where
    T: IntoWasmAbi
[src]

type Abi = <T as IntoWasmAbi>::Abi

Same as IntoWasmAbi::Abi

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.