blob: 814a1279c886d29629c9779e2de277a04f49e6c0 (
plain)
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
|
#![allow(unused_imports)]
#![allow(clippy::all)]
use super::*;
use wasm_bindgen::prelude::*;
#[wasm_bindgen]
extern "C" {
# [wasm_bindgen (extends = :: js_sys :: Object , js_name = DisplayMediaStreamConstraints)]
#[derive(Debug, Clone, PartialEq, Eq)]
#[doc = "The `DisplayMediaStreamConstraints` dictionary."]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `DisplayMediaStreamConstraints`*"]
pub type DisplayMediaStreamConstraints;
#[doc = "Get the `audio` field of this object."]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `DisplayMediaStreamConstraints`*"]
#[wasm_bindgen(method, getter = "audio")]
pub fn get_audio(this: &DisplayMediaStreamConstraints) -> ::wasm_bindgen::JsValue;
#[doc = "Change the `audio` field of this object."]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `DisplayMediaStreamConstraints`*"]
#[wasm_bindgen(method, setter = "audio")]
pub fn set_audio(this: &DisplayMediaStreamConstraints, val: &::wasm_bindgen::JsValue);
#[doc = "Get the `video` field of this object."]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `DisplayMediaStreamConstraints`*"]
#[wasm_bindgen(method, getter = "video")]
pub fn get_video(this: &DisplayMediaStreamConstraints) -> ::wasm_bindgen::JsValue;
#[doc = "Change the `video` field of this object."]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `DisplayMediaStreamConstraints`*"]
#[wasm_bindgen(method, setter = "video")]
pub fn set_video(this: &DisplayMediaStreamConstraints, val: &::wasm_bindgen::JsValue);
}
impl DisplayMediaStreamConstraints {
#[doc = "Construct a new `DisplayMediaStreamConstraints`."]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `DisplayMediaStreamConstraints`*"]
pub fn new() -> Self {
#[allow(unused_mut)]
let mut ret: Self = ::wasm_bindgen::JsCast::unchecked_into(::js_sys::Object::new());
ret
}
#[deprecated = "Use `set_audio()` instead."]
pub fn audio(&mut self, val: &::wasm_bindgen::JsValue) -> &mut Self {
self.set_audio(val);
self
}
#[deprecated = "Use `set_video()` instead."]
pub fn video(&mut self, val: &::wasm_bindgen::JsValue) -> &mut Self {
self.set_video(val);
self
}
}
impl Default for DisplayMediaStreamConstraints {
fn default() -> Self {
Self::new()
}
}
|