[][src]Struct web_sys::RtcIceComponentStats

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

The RtcIceComponentStats dictionary.

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

Methods

impl RtcIceComponentStats[src]

pub fn new() -> Self[src]

Construct a new RtcIceComponentStats.

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

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

Change the id field of this object.

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

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

Change the timestamp field of this object.

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

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

Change the type field of this object.

This API requires the following crate features to be activated: RtcIceComponentStats, RtcStatsType

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

Change the activeConnection field of this object.

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

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

Change the bytesReceived field of this object.

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

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

Change the bytesSent field of this object.

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

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

Change the component field of this object.

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

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

Change the transportId field of this object.

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

Trait Implementations

impl AsRef<JsValue> for RtcIceComponentStats[src]

impl AsRef<Object> for RtcIceComponentStats[src]

impl AsRef<RtcIceComponentStats> for RtcIceComponentStats[src]

impl Clone for RtcIceComponentStats[src]

impl Debug for RtcIceComponentStats[src]

impl Deref for RtcIceComponentStats[src]

type Target = Object

The resulting type after dereferencing.

impl Eq for RtcIceComponentStats[src]

impl From<JsValue> for RtcIceComponentStats[src]

impl From<RtcIceComponentStats> for JsValue[src]

impl From<RtcIceComponentStats> for Object[src]

impl FromWasmAbi for RtcIceComponentStats[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 RtcIceComponentStats[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 RtcIceComponentStats[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 RtcIceComponentStats[src]

impl OptionFromWasmAbi for RtcIceComponentStats[src]

impl OptionIntoWasmAbi for RtcIceComponentStats[src]

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

impl PartialEq<RtcIceComponentStats> for RtcIceComponentStats[src]

impl RefFromWasmAbi for RtcIceComponentStats[src]

type Abi = <JsValue as RefFromWasmAbi>::Abi

The wasm ABI type references to Self are recovered from.

type Anchor = ManuallyDrop<RtcIceComponentStats>

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 RtcIceComponentStats[src]

impl StructuralPartialEq for RtcIceComponentStats[src]

impl WasmDescribe for RtcIceComponentStats[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.