mirror of
https://github.com/fluencelabs/wasm-bindgen
synced 2025-05-14 06:41:20 +00:00
181 lines
7.9 KiB
Rust
181 lines
7.9 KiB
Rust
|
#![allow(unused_imports)]
|
||
|
use super::*;
|
||
|
use wasm_bindgen::prelude::*;
|
||
|
#[cfg(web_sys_unstable_apis)]
|
||
|
#[wasm_bindgen]
|
||
|
extern "C" {
|
||
|
# [ wasm_bindgen ( extends = :: js_sys :: Object , js_name = GPUBindGroupLayoutBinding ) ]
|
||
|
#[derive(Debug, Clone, PartialEq, Eq)]
|
||
|
#[doc = "The `GpuBindGroupLayoutBinding` dictionary."]
|
||
|
#[doc = ""]
|
||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBindGroupLayoutBinding`*"]
|
||
|
#[doc = ""]
|
||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||
|
pub type GpuBindGroupLayoutBinding;
|
||
|
}
|
||
|
#[cfg(web_sys_unstable_apis)]
|
||
|
impl GpuBindGroupLayoutBinding {
|
||
|
#[cfg(feature = "GpuBindingType")]
|
||
|
#[doc = "Construct a new `GpuBindGroupLayoutBinding`."]
|
||
|
#[doc = ""]
|
||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBindGroupLayoutBinding`, `GpuBindingType`*"]
|
||
|
#[doc = ""]
|
||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||
|
pub fn new(binding: u32, type_: GpuBindingType, visibility: u32) -> Self {
|
||
|
#[allow(unused_mut)]
|
||
|
let mut ret: Self = ::wasm_bindgen::JsCast::unchecked_into(::js_sys::Object::new());
|
||
|
ret.binding(binding);
|
||
|
ret.type_(type_);
|
||
|
ret.visibility(visibility);
|
||
|
ret
|
||
|
}
|
||
|
#[cfg(web_sys_unstable_apis)]
|
||
|
#[doc = "Change the `binding` field of this object."]
|
||
|
#[doc = ""]
|
||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBindGroupLayoutBinding`*"]
|
||
|
#[doc = ""]
|
||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||
|
pub fn binding(&mut self, val: u32) -> &mut Self {
|
||
|
use wasm_bindgen::JsValue;
|
||
|
let r = ::js_sys::Reflect::set(
|
||
|
self.as_ref(),
|
||
|
&JsValue::from("binding"),
|
||
|
&JsValue::from(val),
|
||
|
);
|
||
|
debug_assert!(
|
||
|
r.is_ok(),
|
||
|
"setting properties should never fail on our dictionary objects"
|
||
|
);
|
||
|
let _ = r;
|
||
|
self
|
||
|
}
|
||
|
#[cfg(web_sys_unstable_apis)]
|
||
|
#[doc = "Change the `hasDynamicOffset` field of this object."]
|
||
|
#[doc = ""]
|
||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBindGroupLayoutBinding`*"]
|
||
|
#[doc = ""]
|
||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||
|
pub fn has_dynamic_offset(&mut self, val: bool) -> &mut Self {
|
||
|
use wasm_bindgen::JsValue;
|
||
|
let r = ::js_sys::Reflect::set(
|
||
|
self.as_ref(),
|
||
|
&JsValue::from("hasDynamicOffset"),
|
||
|
&JsValue::from(val),
|
||
|
);
|
||
|
debug_assert!(
|
||
|
r.is_ok(),
|
||
|
"setting properties should never fail on our dictionary objects"
|
||
|
);
|
||
|
let _ = r;
|
||
|
self
|
||
|
}
|
||
|
#[cfg(web_sys_unstable_apis)]
|
||
|
#[doc = "Change the `multisampled` field of this object."]
|
||
|
#[doc = ""]
|
||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBindGroupLayoutBinding`*"]
|
||
|
#[doc = ""]
|
||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||
|
pub fn multisampled(&mut self, val: bool) -> &mut Self {
|
||
|
use wasm_bindgen::JsValue;
|
||
|
let r = ::js_sys::Reflect::set(
|
||
|
self.as_ref(),
|
||
|
&JsValue::from("multisampled"),
|
||
|
&JsValue::from(val),
|
||
|
);
|
||
|
debug_assert!(
|
||
|
r.is_ok(),
|
||
|
"setting properties should never fail on our dictionary objects"
|
||
|
);
|
||
|
let _ = r;
|
||
|
self
|
||
|
}
|
||
|
#[cfg(web_sys_unstable_apis)]
|
||
|
#[cfg(feature = "GpuTextureComponentType")]
|
||
|
#[doc = "Change the `textureComponentType` field of this object."]
|
||
|
#[doc = ""]
|
||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBindGroupLayoutBinding`, `GpuTextureComponentType`*"]
|
||
|
#[doc = ""]
|
||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||
|
pub fn texture_component_type(&mut self, val: GpuTextureComponentType) -> &mut Self {
|
||
|
use wasm_bindgen::JsValue;
|
||
|
let r = ::js_sys::Reflect::set(
|
||
|
self.as_ref(),
|
||
|
&JsValue::from("textureComponentType"),
|
||
|
&JsValue::from(val),
|
||
|
);
|
||
|
debug_assert!(
|
||
|
r.is_ok(),
|
||
|
"setting properties should never fail on our dictionary objects"
|
||
|
);
|
||
|
let _ = r;
|
||
|
self
|
||
|
}
|
||
|
#[cfg(web_sys_unstable_apis)]
|
||
|
#[cfg(feature = "GpuTextureViewDimension")]
|
||
|
#[doc = "Change the `textureDimension` field of this object."]
|
||
|
#[doc = ""]
|
||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBindGroupLayoutBinding`, `GpuTextureViewDimension`*"]
|
||
|
#[doc = ""]
|
||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||
|
pub fn texture_dimension(&mut self, val: GpuTextureViewDimension) -> &mut Self {
|
||
|
use wasm_bindgen::JsValue;
|
||
|
let r = ::js_sys::Reflect::set(
|
||
|
self.as_ref(),
|
||
|
&JsValue::from("textureDimension"),
|
||
|
&JsValue::from(val),
|
||
|
);
|
||
|
debug_assert!(
|
||
|
r.is_ok(),
|
||
|
"setting properties should never fail on our dictionary objects"
|
||
|
);
|
||
|
let _ = r;
|
||
|
self
|
||
|
}
|
||
|
#[cfg(web_sys_unstable_apis)]
|
||
|
#[cfg(feature = "GpuBindingType")]
|
||
|
#[doc = "Change the `type` field of this object."]
|
||
|
#[doc = ""]
|
||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBindGroupLayoutBinding`, `GpuBindingType`*"]
|
||
|
#[doc = ""]
|
||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||
|
pub fn type_(&mut self, val: GpuBindingType) -> &mut Self {
|
||
|
use wasm_bindgen::JsValue;
|
||
|
let r = ::js_sys::Reflect::set(self.as_ref(), &JsValue::from("type"), &JsValue::from(val));
|
||
|
debug_assert!(
|
||
|
r.is_ok(),
|
||
|
"setting properties should never fail on our dictionary objects"
|
||
|
);
|
||
|
let _ = r;
|
||
|
self
|
||
|
}
|
||
|
#[cfg(web_sys_unstable_apis)]
|
||
|
#[doc = "Change the `visibility` field of this object."]
|
||
|
#[doc = ""]
|
||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBindGroupLayoutBinding`*"]
|
||
|
#[doc = ""]
|
||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||
|
pub fn visibility(&mut self, val: u32) -> &mut Self {
|
||
|
use wasm_bindgen::JsValue;
|
||
|
let r = ::js_sys::Reflect::set(
|
||
|
self.as_ref(),
|
||
|
&JsValue::from("visibility"),
|
||
|
&JsValue::from(val),
|
||
|
);
|
||
|
debug_assert!(
|
||
|
r.is_ok(),
|
||
|
"setting properties should never fail on our dictionary objects"
|
||
|
);
|
||
|
let _ = r;
|
||
|
self
|
||
|
}
|
||
|
}
|