[][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() -> Self[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]

Change 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]

Change 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]

Change 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]

Change 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]

Change 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]

Change 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]

Change 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 AsRef<Object> for RtcDataChannelInit[src]

impl AsRef<RtcDataChannelInit> for RtcDataChannelInit[src]

impl Clone for RtcDataChannelInit[src]

impl Debug for RtcDataChannelInit[src]

impl Deref for RtcDataChannelInit[src]

type Target = Object

The resulting type after dereferencing.

impl Eq for RtcDataChannelInit[src]

impl From<JsValue> for RtcDataChannelInit[src]

impl From<RtcDataChannelInit> for JsValue[src]

impl From<RtcDataChannelInit> for Object[src]

impl FromWasmAbi for RtcDataChannelInit[src]

type Abi = <JsValue 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 = <JsValue 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 JsValue 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 PartialEq<RtcDataChannelInit> for RtcDataChannelInit[src]

impl RefFromWasmAbi for RtcDataChannelInit[src]

type Abi = <JsValue 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 StructuralEq for RtcDataChannelInit[src]

impl StructuralPartialEq for RtcDataChannelInit[src]

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.