web_sys/features/
gen_GpuExtent3dDict.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 = GPUExtent3DDict)]
9 #[derive(Debug, Clone, PartialEq, Eq)]
10 #[doc = "The `GpuExtent3dDict` dictionary."]
11 #[doc = ""]
12 #[doc = "*This API requires the following crate features to be activated: `GpuExtent3dDict`*"]
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://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
16 pub type GpuExtent3dDict;
17 #[cfg(web_sys_unstable_apis)]
18 #[doc = "Get the `depthOrArrayLayers` field of this object."]
19 #[doc = ""]
20 #[doc = "*This API requires the following crate features to be activated: `GpuExtent3dDict`*"]
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://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
24 #[wasm_bindgen(method, getter = "depthOrArrayLayers")]
25 pub fn get_depth_or_array_layers(this: &GpuExtent3dDict) -> Option<u32>;
26 #[cfg(web_sys_unstable_apis)]
27 #[doc = "Change the `depthOrArrayLayers` field of this object."]
28 #[doc = ""]
29 #[doc = "*This API requires the following crate features to be activated: `GpuExtent3dDict`*"]
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://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
33 #[wasm_bindgen(method, setter = "depthOrArrayLayers")]
34 pub fn set_depth_or_array_layers(this: &GpuExtent3dDict, val: u32);
35 #[cfg(web_sys_unstable_apis)]
36 #[doc = "Get the `height` field of this object."]
37 #[doc = ""]
38 #[doc = "*This API requires the following crate features to be activated: `GpuExtent3dDict`*"]
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://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
42 #[wasm_bindgen(method, getter = "height")]
43 pub fn get_height(this: &GpuExtent3dDict) -> Option<u32>;
44 #[cfg(web_sys_unstable_apis)]
45 #[doc = "Change the `height` field of this object."]
46 #[doc = ""]
47 #[doc = "*This API requires the following crate features to be activated: `GpuExtent3dDict`*"]
48 #[doc = ""]
49 #[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
50 #[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
51 #[wasm_bindgen(method, setter = "height")]
52 pub fn set_height(this: &GpuExtent3dDict, val: u32);
53 #[cfg(web_sys_unstable_apis)]
54 #[doc = "Get the `width` field of this object."]
55 #[doc = ""]
56 #[doc = "*This API requires the following crate features to be activated: `GpuExtent3dDict`*"]
57 #[doc = ""]
58 #[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
59 #[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
60 #[wasm_bindgen(method, getter = "width")]
61 pub fn get_width(this: &GpuExtent3dDict) -> u32;
62 #[cfg(web_sys_unstable_apis)]
63 #[doc = "Change the `width` field of this object."]
64 #[doc = ""]
65 #[doc = "*This API requires the following crate features to be activated: `GpuExtent3dDict`*"]
66 #[doc = ""]
67 #[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
68 #[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
69 #[wasm_bindgen(method, setter = "width")]
70 pub fn set_width(this: &GpuExtent3dDict, val: u32);
71}
72#[cfg(web_sys_unstable_apis)]
73impl GpuExtent3dDict {
74 #[doc = "Construct a new `GpuExtent3dDict`."]
75 #[doc = ""]
76 #[doc = "*This API requires the following crate features to be activated: `GpuExtent3dDict`*"]
77 #[doc = ""]
78 #[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
79 #[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
80 pub fn new(width: u32) -> Self {
81 #[allow(unused_mut)]
82 let mut ret: Self = ::wasm_bindgen::JsCast::unchecked_into(::js_sys::Object::new());
83 ret.set_width(width);
84 ret
85 }
86 #[cfg(web_sys_unstable_apis)]
87 #[deprecated = "Use `set_depth_or_array_layers()` instead."]
88 pub fn depth_or_array_layers(&mut self, val: u32) -> &mut Self {
89 self.set_depth_or_array_layers(val);
90 self
91 }
92 #[cfg(web_sys_unstable_apis)]
93 #[deprecated = "Use `set_height()` instead."]
94 pub fn height(&mut self, val: u32) -> &mut Self {
95 self.set_height(val);
96 self
97 }
98 #[cfg(web_sys_unstable_apis)]
99 #[deprecated = "Use `set_width()` instead."]
100 pub fn width(&mut self, val: u32) -> &mut Self {
101 self.set_width(val);
102 self
103 }
104}