web_sys/features/
gen_AllowedBluetoothDevice.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 = AllowedBluetoothDevice)]
9    #[derive(Debug, Clone, PartialEq, Eq)]
10    #[doc = "The `AllowedBluetoothDevice` dictionary."]
11    #[doc = ""]
12    #[doc = "*This API requires the following crate features to be activated: `AllowedBluetoothDevice`*"]
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 AllowedBluetoothDevice;
17    #[cfg(web_sys_unstable_apis)]
18    #[doc = "Get the `allowedServices` field of this object."]
19    #[doc = ""]
20    #[doc = "*This API requires the following crate features to be activated: `AllowedBluetoothDevice`*"]
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 = "allowedServices")]
25    pub fn get_allowed_services(this: &AllowedBluetoothDevice) -> ::wasm_bindgen::JsValue;
26    #[cfg(web_sys_unstable_apis)]
27    #[doc = "Change the `allowedServices` field of this object."]
28    #[doc = ""]
29    #[doc = "*This API requires the following crate features to be activated: `AllowedBluetoothDevice`*"]
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 = "allowedServices")]
34    pub fn set_allowed_services(this: &AllowedBluetoothDevice, val: &::wasm_bindgen::JsValue);
35    #[cfg(web_sys_unstable_apis)]
36    #[doc = "Get the `deviceId` field of this object."]
37    #[doc = ""]
38    #[doc = "*This API requires the following crate features to be activated: `AllowedBluetoothDevice`*"]
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 = "deviceId")]
43    pub fn get_device_id(this: &AllowedBluetoothDevice) -> ::alloc::string::String;
44    #[cfg(web_sys_unstable_apis)]
45    #[doc = "Change the `deviceId` field of this object."]
46    #[doc = ""]
47    #[doc = "*This API requires the following crate features to be activated: `AllowedBluetoothDevice`*"]
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 = "deviceId")]
52    pub fn set_device_id(this: &AllowedBluetoothDevice, val: &str);
53    #[cfg(web_sys_unstable_apis)]
54    #[doc = "Get the `mayUseGATT` field of this object."]
55    #[doc = ""]
56    #[doc = "*This API requires the following crate features to be activated: `AllowedBluetoothDevice`*"]
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 = "mayUseGATT")]
61    pub fn get_may_use_gatt(this: &AllowedBluetoothDevice) -> bool;
62    #[cfg(web_sys_unstable_apis)]
63    #[doc = "Change the `mayUseGATT` field of this object."]
64    #[doc = ""]
65    #[doc = "*This API requires the following crate features to be activated: `AllowedBluetoothDevice`*"]
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 = "mayUseGATT")]
70    pub fn set_may_use_gatt(this: &AllowedBluetoothDevice, val: bool);
71}
72#[cfg(web_sys_unstable_apis)]
73impl AllowedBluetoothDevice {
74    #[doc = "Construct a new `AllowedBluetoothDevice`."]
75    #[doc = ""]
76    #[doc = "*This API requires the following crate features to be activated: `AllowedBluetoothDevice`*"]
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(
81        allowed_services: &::wasm_bindgen::JsValue,
82        device_id: &str,
83        may_use_gatt: bool,
84    ) -> Self {
85        #[allow(unused_mut)]
86        let mut ret: Self = ::wasm_bindgen::JsCast::unchecked_into(::js_sys::Object::new());
87        ret.set_allowed_services(allowed_services);
88        ret.set_device_id(device_id);
89        ret.set_may_use_gatt(may_use_gatt);
90        ret
91    }
92    #[cfg(web_sys_unstable_apis)]
93    #[deprecated = "Use `set_allowed_services()` instead."]
94    pub fn allowed_services(&mut self, val: &::wasm_bindgen::JsValue) -> &mut Self {
95        self.set_allowed_services(val);
96        self
97    }
98    #[cfg(web_sys_unstable_apis)]
99    #[deprecated = "Use `set_device_id()` instead."]
100    pub fn device_id(&mut self, val: &str) -> &mut Self {
101        self.set_device_id(val);
102        self
103    }
104    #[cfg(web_sys_unstable_apis)]
105    #[deprecated = "Use `set_may_use_gatt()` instead."]
106    pub fn may_use_gatt(&mut self, val: bool) -> &mut Self {
107        self.set_may_use_gatt(val);
108        self
109    }
110}