59 lines
2.6 KiB
Rust
59 lines
2.6 KiB
Rust
#![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()
|
|
}
|
|
}
|