web_sys/features/
gen_RtcRtpParameters.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
#![allow(unused_imports)]
#![allow(clippy::all)]
use super::*;
use wasm_bindgen::prelude::*;
#[wasm_bindgen]
extern "C" {
    # [wasm_bindgen (extends = :: js_sys :: Object , js_name = RTCRtpParameters)]
    #[derive(Debug, Clone, PartialEq, Eq)]
    #[doc = "The `RtcRtpParameters` dictionary."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `RtcRtpParameters`*"]
    pub type RtcRtpParameters;
    #[doc = "Get the `codecs` field of this object."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `RtcRtpParameters`*"]
    #[wasm_bindgen(method, getter = "codecs")]
    pub fn get_codecs(this: &RtcRtpParameters) -> Option<::js_sys::Array>;
    #[doc = "Change the `codecs` field of this object."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `RtcRtpParameters`*"]
    #[wasm_bindgen(method, setter = "codecs")]
    pub fn set_codecs(this: &RtcRtpParameters, val: &::wasm_bindgen::JsValue);
    #[doc = "Get the `encodings` field of this object."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `RtcRtpParameters`*"]
    #[wasm_bindgen(method, getter = "encodings")]
    pub fn get_encodings(this: &RtcRtpParameters) -> Option<::js_sys::Array>;
    #[doc = "Change the `encodings` field of this object."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `RtcRtpParameters`*"]
    #[wasm_bindgen(method, setter = "encodings")]
    pub fn set_encodings(this: &RtcRtpParameters, val: &::wasm_bindgen::JsValue);
    #[doc = "Get the `headerExtensions` field of this object."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `RtcRtpParameters`*"]
    #[wasm_bindgen(method, getter = "headerExtensions")]
    pub fn get_header_extensions(this: &RtcRtpParameters) -> Option<::js_sys::Array>;
    #[doc = "Change the `headerExtensions` field of this object."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `RtcRtpParameters`*"]
    #[wasm_bindgen(method, setter = "headerExtensions")]
    pub fn set_header_extensions(this: &RtcRtpParameters, val: &::wasm_bindgen::JsValue);
    #[cfg(feature = "RtcRtcpParameters")]
    #[doc = "Get the `rtcp` field of this object."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `RtcRtcpParameters`, `RtcRtpParameters`*"]
    #[wasm_bindgen(method, getter = "rtcp")]
    pub fn get_rtcp(this: &RtcRtpParameters) -> Option<RtcRtcpParameters>;
    #[cfg(feature = "RtcRtcpParameters")]
    #[doc = "Change the `rtcp` field of this object."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `RtcRtcpParameters`, `RtcRtpParameters`*"]
    #[wasm_bindgen(method, setter = "rtcp")]
    pub fn set_rtcp(this: &RtcRtpParameters, val: &RtcRtcpParameters);
}
impl RtcRtpParameters {
    #[doc = "Construct a new `RtcRtpParameters`."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `RtcRtpParameters`*"]
    pub fn new() -> Self {
        #[allow(unused_mut)]
        let mut ret: Self = ::wasm_bindgen::JsCast::unchecked_into(::js_sys::Object::new());
        ret
    }
    #[deprecated = "Use `set_codecs()` instead."]
    pub fn codecs(&mut self, val: &::wasm_bindgen::JsValue) -> &mut Self {
        self.set_codecs(val);
        self
    }
    #[deprecated = "Use `set_encodings()` instead."]
    pub fn encodings(&mut self, val: &::wasm_bindgen::JsValue) -> &mut Self {
        self.set_encodings(val);
        self
    }
    #[deprecated = "Use `set_header_extensions()` instead."]
    pub fn header_extensions(&mut self, val: &::wasm_bindgen::JsValue) -> &mut Self {
        self.set_header_extensions(val);
        self
    }
    #[cfg(feature = "RtcRtcpParameters")]
    #[deprecated = "Use `set_rtcp()` instead."]
    pub fn rtcp(&mut self, val: &RtcRtcpParameters) -> &mut Self {
        self.set_rtcp(val);
        self
    }
}
impl Default for RtcRtpParameters {
    fn default() -> Self {
        Self::new()
    }
}