web_sys/features/
gen_GpuRequestAdapterOptions.rs#![allow(unused_imports)]
#![allow(clippy::all)]
use super::*;
use wasm_bindgen::prelude::*;
#[cfg(web_sys_unstable_apis)]
#[wasm_bindgen]
extern "C" {
# [wasm_bindgen (extends = :: js_sys :: Object , js_name = GPURequestAdapterOptions)]
#[derive(Debug, Clone, PartialEq, Eq)]
#[doc = "The `GpuRequestAdapterOptions` dictionary."]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `GpuRequestAdapterOptions`*"]
#[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 GpuRequestAdapterOptions;
#[cfg(web_sys_unstable_apis)]
#[doc = "Get the `featureLevel` field of this object."]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `GpuRequestAdapterOptions`*"]
#[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)*"]
#[wasm_bindgen(method, getter = "featureLevel")]
pub fn get_feature_level(this: &GpuRequestAdapterOptions) -> Option<String>;
#[cfg(web_sys_unstable_apis)]
#[doc = "Change the `featureLevel` field of this object."]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `GpuRequestAdapterOptions`*"]
#[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)*"]
#[wasm_bindgen(method, setter = "featureLevel")]
pub fn set_feature_level(this: &GpuRequestAdapterOptions, val: &str);
#[cfg(web_sys_unstable_apis)]
#[doc = "Get the `forceFallbackAdapter` field of this object."]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `GpuRequestAdapterOptions`*"]
#[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)*"]
#[wasm_bindgen(method, getter = "forceFallbackAdapter")]
pub fn get_force_fallback_adapter(this: &GpuRequestAdapterOptions) -> Option<bool>;
#[cfg(web_sys_unstable_apis)]
#[doc = "Change the `forceFallbackAdapter` field of this object."]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `GpuRequestAdapterOptions`*"]
#[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)*"]
#[wasm_bindgen(method, setter = "forceFallbackAdapter")]
pub fn set_force_fallback_adapter(this: &GpuRequestAdapterOptions, val: bool);
#[cfg(web_sys_unstable_apis)]
#[cfg(feature = "GpuPowerPreference")]
#[doc = "Get the `powerPreference` field of this object."]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `GpuPowerPreference`, `GpuRequestAdapterOptions`*"]
#[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)*"]
#[wasm_bindgen(method, getter = "powerPreference")]
pub fn get_power_preference(this: &GpuRequestAdapterOptions) -> Option<GpuPowerPreference>;
#[cfg(web_sys_unstable_apis)]
#[cfg(feature = "GpuPowerPreference")]
#[doc = "Change the `powerPreference` field of this object."]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `GpuPowerPreference`, `GpuRequestAdapterOptions`*"]
#[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)*"]
#[wasm_bindgen(method, setter = "powerPreference")]
pub fn set_power_preference(this: &GpuRequestAdapterOptions, val: GpuPowerPreference);
}
#[cfg(web_sys_unstable_apis)]
impl GpuRequestAdapterOptions {
#[doc = "Construct a new `GpuRequestAdapterOptions`."]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `GpuRequestAdapterOptions`*"]
#[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() -> Self {
#[allow(unused_mut)]
let mut ret: Self = ::wasm_bindgen::JsCast::unchecked_into(::js_sys::Object::new());
ret
}
#[cfg(web_sys_unstable_apis)]
#[deprecated = "Use `set_feature_level()` instead."]
pub fn feature_level(&mut self, val: &str) -> &mut Self {
self.set_feature_level(val);
self
}
#[cfg(web_sys_unstable_apis)]
#[deprecated = "Use `set_force_fallback_adapter()` instead."]
pub fn force_fallback_adapter(&mut self, val: bool) -> &mut Self {
self.set_force_fallback_adapter(val);
self
}
#[cfg(web_sys_unstable_apis)]
#[cfg(feature = "GpuPowerPreference")]
#[deprecated = "Use `set_power_preference()` instead."]
pub fn power_preference(&mut self, val: GpuPowerPreference) -> &mut Self {
self.set_power_preference(val);
self
}
}
#[cfg(web_sys_unstable_apis)]
impl Default for GpuRequestAdapterOptions {
fn default() -> Self {
Self::new()
}
}