1 #![allow(unused_imports)] 2 use super::*; 3 use wasm_bindgen::prelude::*; 4 #[wasm_bindgen] 5 extern "C" { 6 # [wasm_bindgen (extends = :: js_sys :: Object , js_name = RTCIceCandidateInit)] 7 #[derive(Debug, Clone, PartialEq, Eq)] 8 #[doc = "The `RtcIceCandidateInit` dictionary."] 9 #[doc = ""] 10 #[doc = "*This API requires the following crate features to be activated: `RtcIceCandidateInit`*"] 11 pub type RtcIceCandidateInit; 12 } 13 impl RtcIceCandidateInit { 14 #[doc = "Construct a new `RtcIceCandidateInit`."] 15 #[doc = ""] 16 #[doc = "*This API requires the following crate features to be activated: `RtcIceCandidateInit`*"] new(candidate: &str) -> Self17 pub fn new(candidate: &str) -> Self { 18 #[allow(unused_mut)] 19 let mut ret: Self = ::wasm_bindgen::JsCast::unchecked_into(::js_sys::Object::new()); 20 ret.candidate(candidate); 21 ret 22 } 23 #[doc = "Change the `candidate` field of this object."] 24 #[doc = ""] 25 #[doc = "*This API requires the following crate features to be activated: `RtcIceCandidateInit`*"] candidate(&mut self, val: &str) -> &mut Self26 pub fn candidate(&mut self, val: &str) -> &mut Self { 27 use wasm_bindgen::JsValue; 28 let r = ::js_sys::Reflect::set( 29 self.as_ref(), 30 &JsValue::from("candidate"), 31 &JsValue::from(val), 32 ); 33 debug_assert!( 34 r.is_ok(), 35 "setting properties should never fail on our dictionary objects" 36 ); 37 let _ = r; 38 self 39 } 40 #[doc = "Change the `sdpMLineIndex` field of this object."] 41 #[doc = ""] 42 #[doc = "*This API requires the following crate features to be activated: `RtcIceCandidateInit`*"] sdp_m_line_index(&mut self, val: Option<u16>) -> &mut Self43 pub fn sdp_m_line_index(&mut self, val: Option<u16>) -> &mut Self { 44 use wasm_bindgen::JsValue; 45 let r = ::js_sys::Reflect::set( 46 self.as_ref(), 47 &JsValue::from("sdpMLineIndex"), 48 &JsValue::from(val), 49 ); 50 debug_assert!( 51 r.is_ok(), 52 "setting properties should never fail on our dictionary objects" 53 ); 54 let _ = r; 55 self 56 } 57 #[doc = "Change the `sdpMid` field of this object."] 58 #[doc = ""] 59 #[doc = "*This API requires the following crate features to be activated: `RtcIceCandidateInit`*"] sdp_mid(&mut self, val: Option<&str>) -> &mut Self60 pub fn sdp_mid(&mut self, val: Option<&str>) -> &mut Self { 61 use wasm_bindgen::JsValue; 62 let r = 63 ::js_sys::Reflect::set(self.as_ref(), &JsValue::from("sdpMid"), &JsValue::from(val)); 64 debug_assert!( 65 r.is_ok(), 66 "setting properties should never fail on our dictionary objects" 67 ); 68 let _ = r; 69 self 70 } 71 } 72