web_sys/features/
gen_RtcStats.rs#![allow(unused_imports)]
#![allow(clippy::all)]
use super::*;
use wasm_bindgen::prelude::*;
#[wasm_bindgen]
extern "C" {
# [wasm_bindgen (extends = :: js_sys :: Object , js_name = RTCStats)]
#[derive(Debug, Clone, PartialEq, Eq)]
#[doc = "The `RtcStats` dictionary."]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `RtcStats`*"]
pub type RtcStats;
#[doc = "Get the `id` field of this object."]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `RtcStats`*"]
#[wasm_bindgen(method, getter = "id")]
pub fn get_id(this: &RtcStats) -> Option<String>;
#[doc = "Change the `id` field of this object."]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `RtcStats`*"]
#[wasm_bindgen(method, setter = "id")]
pub fn set_id(this: &RtcStats, val: &str);
#[doc = "Get the `timestamp` field of this object."]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `RtcStats`*"]
#[wasm_bindgen(method, getter = "timestamp")]
pub fn get_timestamp(this: &RtcStats) -> Option<f64>;
#[doc = "Change the `timestamp` field of this object."]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `RtcStats`*"]
#[wasm_bindgen(method, setter = "timestamp")]
pub fn set_timestamp(this: &RtcStats, val: f64);
#[cfg(feature = "RtcStatsType")]
#[doc = "Get the `type` field of this object."]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `RtcStats`, `RtcStatsType`*"]
#[wasm_bindgen(method, getter = "type")]
pub fn get_type(this: &RtcStats) -> Option<RtcStatsType>;
#[cfg(feature = "RtcStatsType")]
#[doc = "Change the `type` field of this object."]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `RtcStats`, `RtcStatsType`*"]
#[wasm_bindgen(method, setter = "type")]
pub fn set_type(this: &RtcStats, val: RtcStatsType);
}
impl RtcStats {
#[doc = "Construct a new `RtcStats`."]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `RtcStats`*"]
pub fn new() -> Self {
#[allow(unused_mut)]
let mut ret: Self = ::wasm_bindgen::JsCast::unchecked_into(::js_sys::Object::new());
ret
}
#[deprecated = "Use `set_id()` instead."]
pub fn id(&mut self, val: &str) -> &mut Self {
self.set_id(val);
self
}
#[deprecated = "Use `set_timestamp()` instead."]
pub fn timestamp(&mut self, val: f64) -> &mut Self {
self.set_timestamp(val);
self
}
#[cfg(feature = "RtcStatsType")]
#[deprecated = "Use `set_type()` instead."]
pub fn type_(&mut self, val: RtcStatsType) -> &mut Self {
self.set_type(val);
self
}
}
impl Default for RtcStats {
fn default() -> Self {
Self::new()
}
}