| #![allow(unused_imports)] |
| #![allow(clippy::all)] |
| use super::*; |
| use wasm_bindgen::prelude::*; |
| #[wasm_bindgen] |
| extern "C" { |
| # [wasm_bindgen (extends = :: js_sys :: Object , js_name = RTCRTPContributingSourceStats)] |
| #[derive(Debug, Clone, PartialEq, Eq)] |
| #[doc = "The `RtcrtpContributingSourceStats` dictionary."] |
| #[doc = ""] |
| #[doc = "*This API requires the following crate features to be activated: `RtcrtpContributingSourceStats`*"] |
| pub type RtcrtpContributingSourceStats; |
| } |
| impl RtcrtpContributingSourceStats { |
| #[doc = "Construct a new `RtcrtpContributingSourceStats`."] |
| #[doc = ""] |
| #[doc = "*This API requires the following crate features to be activated: `RtcrtpContributingSourceStats`*"] |
| pub fn new() -> Self { |
| #[allow(unused_mut)] |
| let mut ret: Self = ::wasm_bindgen::JsCast::unchecked_into(::js_sys::Object::new()); |
| ret |
| } |
| #[doc = "Change the `id` field of this object."] |
| #[doc = ""] |
| #[doc = "*This API requires the following crate features to be activated: `RtcrtpContributingSourceStats`*"] |
| pub fn id(&mut self, val: &str) -> &mut Self { |
| use wasm_bindgen::JsValue; |
| let r = ::js_sys::Reflect::set(self.as_ref(), &JsValue::from("id"), &JsValue::from(val)); |
| debug_assert!( |
| r.is_ok(), |
| "setting properties should never fail on our dictionary objects" |
| ); |
| let _ = r; |
| self |
| } |
| #[doc = "Change the `timestamp` field of this object."] |
| #[doc = ""] |
| #[doc = "*This API requires the following crate features to be activated: `RtcrtpContributingSourceStats`*"] |
| pub fn timestamp(&mut self, val: f64) -> &mut Self { |
| use wasm_bindgen::JsValue; |
| let r = ::js_sys::Reflect::set( |
| self.as_ref(), |
| &JsValue::from("timestamp"), |
| &JsValue::from(val), |
| ); |
| debug_assert!( |
| r.is_ok(), |
| "setting properties should never fail on our dictionary objects" |
| ); |
| let _ = r; |
| self |
| } |
| #[cfg(feature = "RtcStatsType")] |
| #[doc = "Change the `type` field of this object."] |
| #[doc = ""] |
| #[doc = "*This API requires the following crate features to be activated: `RtcStatsType`, `RtcrtpContributingSourceStats`*"] |
| pub fn type_(&mut self, val: RtcStatsType) -> &mut Self { |
| use wasm_bindgen::JsValue; |
| let r = ::js_sys::Reflect::set(self.as_ref(), &JsValue::from("type"), &JsValue::from(val)); |
| debug_assert!( |
| r.is_ok(), |
| "setting properties should never fail on our dictionary objects" |
| ); |
| let _ = r; |
| self |
| } |
| #[doc = "Change the `contributorSsrc` field of this object."] |
| #[doc = ""] |
| #[doc = "*This API requires the following crate features to be activated: `RtcrtpContributingSourceStats`*"] |
| pub fn contributor_ssrc(&mut self, val: u32) -> &mut Self { |
| use wasm_bindgen::JsValue; |
| let r = ::js_sys::Reflect::set( |
| self.as_ref(), |
| &JsValue::from("contributorSsrc"), |
| &JsValue::from(val), |
| ); |
| debug_assert!( |
| r.is_ok(), |
| "setting properties should never fail on our dictionary objects" |
| ); |
| let _ = r; |
| self |
| } |
| #[doc = "Change the `inboundRtpStreamId` field of this object."] |
| #[doc = ""] |
| #[doc = "*This API requires the following crate features to be activated: `RtcrtpContributingSourceStats`*"] |
| pub fn inbound_rtp_stream_id(&mut self, val: &str) -> &mut Self { |
| use wasm_bindgen::JsValue; |
| let r = ::js_sys::Reflect::set( |
| self.as_ref(), |
| &JsValue::from("inboundRtpStreamId"), |
| &JsValue::from(val), |
| ); |
| debug_assert!( |
| r.is_ok(), |
| "setting properties should never fail on our dictionary objects" |
| ); |
| let _ = r; |
| self |
| } |
| } |
| impl Default for RtcrtpContributingSourceStats { |
| fn default() -> Self { |
| Self::new() |
| } |
| } |