web_sys/features/
gen_GpuExternalTextureDescriptor.rs1#![allow(unused_imports)]
2#![allow(clippy::all)]
3use super::*;
4use wasm_bindgen::prelude::*;
5#[cfg(web_sys_unstable_apis)]
6#[wasm_bindgen]
7extern "C" {
8 # [wasm_bindgen (extends = :: js_sys :: Object , js_name = GPUExternalTextureDescriptor)]
9 #[derive(Debug, Clone, PartialEq, Eq)]
10 #[doc = "The `GpuExternalTextureDescriptor` dictionary."]
11 #[doc = ""]
12 #[doc = "*This API requires the following crate features to be activated: `GpuExternalTextureDescriptor`*"]
13 #[doc = ""]
14 #[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
15 #[doc = "[described in the `wasm-bindgen` guide](https://wasm-bindgen.github.io/wasm-bindgen/web-sys/unstable-apis.html)*"]
16 pub type GpuExternalTextureDescriptor;
17 #[cfg(web_sys_unstable_apis)]
18 #[doc = "Get the `label` field of this object."]
19 #[doc = ""]
20 #[doc = "*This API requires the following crate features to be activated: `GpuExternalTextureDescriptor`*"]
21 #[doc = ""]
22 #[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
23 #[doc = "[described in the `wasm-bindgen` guide](https://wasm-bindgen.github.io/wasm-bindgen/web-sys/unstable-apis.html)*"]
24 #[wasm_bindgen(method, getter = "label")]
25 pub fn get_label(this: &GpuExternalTextureDescriptor) -> Option<::alloc::string::String>;
26 #[cfg(web_sys_unstable_apis)]
27 #[doc = "Change the `label` field of this object."]
28 #[doc = ""]
29 #[doc = "*This API requires the following crate features to be activated: `GpuExternalTextureDescriptor`*"]
30 #[doc = ""]
31 #[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
32 #[doc = "[described in the `wasm-bindgen` guide](https://wasm-bindgen.github.io/wasm-bindgen/web-sys/unstable-apis.html)*"]
33 #[wasm_bindgen(method, setter = "label")]
34 pub fn set_label(this: &GpuExternalTextureDescriptor, val: &str);
35 #[cfg(web_sys_unstable_apis)]
36 #[doc = "Get the `source` field of this object."]
37 #[doc = ""]
38 #[doc = "*This API requires the following crate features to be activated: `GpuExternalTextureDescriptor`*"]
39 #[doc = ""]
40 #[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
41 #[doc = "[described in the `wasm-bindgen` guide](https://wasm-bindgen.github.io/wasm-bindgen/web-sys/unstable-apis.html)*"]
42 #[wasm_bindgen(method, getter = "source")]
43 pub fn get_source(this: &GpuExternalTextureDescriptor) -> ::js_sys::Object;
44 #[cfg(web_sys_unstable_apis)]
45 #[cfg(feature = "HtmlVideoElement")]
46 #[doc = "Change the `source` field of this object."]
47 #[doc = ""]
48 #[doc = "*This API requires the following crate features to be activated: `GpuExternalTextureDescriptor`*"]
49 #[doc = ""]
50 #[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
51 #[doc = "[described in the `wasm-bindgen` guide](https://wasm-bindgen.github.io/wasm-bindgen/web-sys/unstable-apis.html)*"]
52 #[wasm_bindgen(method, setter = "source")]
53 pub fn set_source(this: &GpuExternalTextureDescriptor, val: &HtmlVideoElement);
54 #[cfg(web_sys_unstable_apis)]
55 #[cfg(feature = "VideoFrame")]
56 #[doc = "Change the `source` field of this object."]
57 #[doc = ""]
58 #[doc = "*This API requires the following crate features to be activated: `GpuExternalTextureDescriptor`*"]
59 #[doc = ""]
60 #[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
61 #[doc = "[described in the `wasm-bindgen` guide](https://wasm-bindgen.github.io/wasm-bindgen/web-sys/unstable-apis.html)*"]
62 #[wasm_bindgen(method, setter = "source")]
63 pub fn set_source_video_frame(this: &GpuExternalTextureDescriptor, val: &VideoFrame);
64}
65#[cfg(web_sys_unstable_apis)]
66impl GpuExternalTextureDescriptor {
67 #[cfg(feature = "HtmlVideoElement")]
68 #[doc = "Construct a new `GpuExternalTextureDescriptor`."]
69 #[doc = ""]
70 #[doc = "*This API requires the following crate features to be activated: `GpuExternalTextureDescriptor`, `HtmlVideoElement`*"]
71 #[doc = ""]
72 #[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
73 #[doc = "[described in the `wasm-bindgen` guide](https://wasm-bindgen.github.io/wasm-bindgen/web-sys/unstable-apis.html)*"]
74 pub fn new(source: &HtmlVideoElement) -> Self {
75 #[allow(unused_mut)]
76 let mut ret: Self = ::wasm_bindgen::JsCast::unchecked_into(::js_sys::Object::new());
77 ret.set_source(source);
78 ret
79 }
80 #[cfg(feature = "VideoFrame")]
81 #[doc = "Construct a new `GpuExternalTextureDescriptor`."]
82 #[doc = ""]
83 #[doc = "*This API requires the following crate features to be activated: `GpuExternalTextureDescriptor`, `VideoFrame`*"]
84 #[doc = ""]
85 #[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
86 #[doc = "[described in the `wasm-bindgen` guide](https://wasm-bindgen.github.io/wasm-bindgen/web-sys/unstable-apis.html)*"]
87 pub fn new_with_video_frame(source: &VideoFrame) -> Self {
88 #[allow(unused_mut)]
89 let mut ret: Self = ::wasm_bindgen::JsCast::unchecked_into(::js_sys::Object::new());
90 ret.set_source_video_frame(source);
91 ret
92 }
93 #[cfg(web_sys_unstable_apis)]
94 #[deprecated = "Use `set_label()` instead."]
95 pub fn label(&mut self, val: &str) -> &mut Self {
96 self.set_label(val);
97 self
98 }
99 #[cfg(web_sys_unstable_apis)]
100 #[deprecated = "Use `set_source()` instead."]
101 pub fn source(&mut self, val: &HtmlVideoElement) -> &mut Self {
102 self.set_source(val);
103 self
104 }
105}