Skip to main content

web_sys/features/
gen_GpuPipelineDescriptorBase.rs

1#![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 = GPUPipelineDescriptorBase)]
9    #[derive(Debug, Clone, PartialEq, Eq)]
10    #[doc = "The `GpuPipelineDescriptorBase` dictionary."]
11    #[doc = ""]
12    #[doc = "*This API requires the following crate features to be activated: `GpuPipelineDescriptorBase`*"]
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 GpuPipelineDescriptorBase;
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: `GpuPipelineDescriptorBase`*"]
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: &GpuPipelineDescriptorBase) -> 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: `GpuPipelineDescriptorBase`*"]
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: &GpuPipelineDescriptorBase, val: &str);
35    #[cfg(web_sys_unstable_apis)]
36    #[doc = "Get the `layout` field of this object."]
37    #[doc = ""]
38    #[doc = "*This API requires the following crate features to be activated: `GpuPipelineDescriptorBase`*"]
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 = "layout")]
43    pub fn get_layout(this: &GpuPipelineDescriptorBase) -> ::wasm_bindgen::JsValue;
44    #[cfg(web_sys_unstable_apis)]
45    #[cfg(feature = "GpuPipelineLayout")]
46    #[doc = "Change the `layout` field of this object."]
47    #[doc = ""]
48    #[doc = "*This API requires the following crate features to be activated: `GpuPipelineDescriptorBase`*"]
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 = "layout")]
53    pub fn set_layout(this: &GpuPipelineDescriptorBase, val: &GpuPipelineLayout);
54    #[cfg(web_sys_unstable_apis)]
55    #[cfg(feature = "GpuAutoLayoutMode")]
56    #[doc = "Change the `layout` field of this object."]
57    #[doc = ""]
58    #[doc = "*This API requires the following crate features to be activated: `GpuPipelineDescriptorBase`*"]
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 = "layout")]
63    pub fn set_layout_gpu_auto_layout_mode(
64        this: &GpuPipelineDescriptorBase,
65        val: GpuAutoLayoutMode,
66    );
67}
68#[cfg(web_sys_unstable_apis)]
69impl GpuPipelineDescriptorBase {
70    #[cfg(feature = "GpuPipelineLayout")]
71    #[doc = "Construct a new `GpuPipelineDescriptorBase`."]
72    #[doc = ""]
73    #[doc = "*This API requires the following crate features to be activated: `GpuPipelineDescriptorBase`, `GpuPipelineLayout`*"]
74    #[doc = ""]
75    #[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
76    #[doc = "[described in the `wasm-bindgen` guide](https://wasm-bindgen.github.io/wasm-bindgen/web-sys/unstable-apis.html)*"]
77    pub fn new(layout: &GpuPipelineLayout) -> Self {
78        #[allow(unused_mut)]
79        let mut ret: Self = ::wasm_bindgen::JsCast::unchecked_into(::js_sys::Object::new());
80        ret.set_layout(layout);
81        ret
82    }
83    #[cfg(feature = "GpuAutoLayoutMode")]
84    #[doc = "Construct a new `GpuPipelineDescriptorBase`."]
85    #[doc = ""]
86    #[doc = "*This API requires the following crate features to be activated: `GpuAutoLayoutMode`, `GpuPipelineDescriptorBase`*"]
87    #[doc = ""]
88    #[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
89    #[doc = "[described in the `wasm-bindgen` guide](https://wasm-bindgen.github.io/wasm-bindgen/web-sys/unstable-apis.html)*"]
90    pub fn new_with_gpu_auto_layout_mode(layout: GpuAutoLayoutMode) -> Self {
91        #[allow(unused_mut)]
92        let mut ret: Self = ::wasm_bindgen::JsCast::unchecked_into(::js_sys::Object::new());
93        ret.set_layout_gpu_auto_layout_mode(layout);
94        ret
95    }
96    #[cfg(web_sys_unstable_apis)]
97    #[deprecated = "Use `set_label()` instead."]
98    pub fn label(&mut self, val: &str) -> &mut Self {
99        self.set_label(val);
100        self
101    }
102    #[cfg(web_sys_unstable_apis)]
103    #[deprecated = "Use `set_layout()` instead."]
104    pub fn layout(&mut self, val: &GpuPipelineLayout) -> &mut Self {
105        self.set_layout(val);
106        self
107    }
108}