web_sys/features/
gen_PublicKeyCredentialDescriptorJson.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 = PublicKeyCredentialDescriptorJSON)]
9 #[derive(Debug, Clone, PartialEq, Eq)]
10 #[doc = "The `PublicKeyCredentialDescriptorJson` dictionary."]
11 #[doc = ""]
12 #[doc = "*This API requires the following crate features to be activated: `PublicKeyCredentialDescriptorJson`*"]
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 PublicKeyCredentialDescriptorJson;
17 #[cfg(web_sys_unstable_apis)]
18 #[doc = "Get the `id` field of this object."]
19 #[doc = ""]
20 #[doc = "*This API requires the following crate features to be activated: `PublicKeyCredentialDescriptorJson`*"]
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 = "id")]
25 pub fn get_id(this: &PublicKeyCredentialDescriptorJson) -> ::alloc::string::String;
26 #[cfg(web_sys_unstable_apis)]
27 #[doc = "Change the `id` field of this object."]
28 #[doc = ""]
29 #[doc = "*This API requires the following crate features to be activated: `PublicKeyCredentialDescriptorJson`*"]
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 = "id")]
34 pub fn set_id(this: &PublicKeyCredentialDescriptorJson, val: &str);
35 #[cfg(web_sys_unstable_apis)]
36 #[doc = "Get the `transports` field of this object."]
37 #[doc = ""]
38 #[doc = "*This API requires the following crate features to be activated: `PublicKeyCredentialDescriptorJson`*"]
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 = "transports")]
43 pub fn get_transports(
44 this: &PublicKeyCredentialDescriptorJson,
45 ) -> Option<::js_sys::Array<::js_sys::JsString>>;
46 #[cfg(web_sys_unstable_apis)]
47 #[doc = "Change the `transports` field of this object."]
48 #[doc = ""]
49 #[doc = "*This API requires the following crate features to be activated: `PublicKeyCredentialDescriptorJson`*"]
50 #[doc = ""]
51 #[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
52 #[doc = "[described in the `wasm-bindgen` guide](https://wasm-bindgen.github.io/wasm-bindgen/web-sys/unstable-apis.html)*"]
53 #[wasm_bindgen(method, setter = "transports")]
54 pub fn set_transports(this: &PublicKeyCredentialDescriptorJson, val: &[::js_sys::JsString]);
55 #[cfg(web_sys_unstable_apis)]
56 #[doc = "Get the `type` field of this object."]
57 #[doc = ""]
58 #[doc = "*This API requires the following crate features to be activated: `PublicKeyCredentialDescriptorJson`*"]
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, getter = "type")]
63 pub fn get_type(this: &PublicKeyCredentialDescriptorJson) -> ::alloc::string::String;
64 #[cfg(web_sys_unstable_apis)]
65 #[doc = "Change the `type` field of this object."]
66 #[doc = ""]
67 #[doc = "*This API requires the following crate features to be activated: `PublicKeyCredentialDescriptorJson`*"]
68 #[doc = ""]
69 #[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
70 #[doc = "[described in the `wasm-bindgen` guide](https://wasm-bindgen.github.io/wasm-bindgen/web-sys/unstable-apis.html)*"]
71 #[wasm_bindgen(method, setter = "type")]
72 pub fn set_type(this: &PublicKeyCredentialDescriptorJson, val: &str);
73}
74#[cfg(web_sys_unstable_apis)]
75impl PublicKeyCredentialDescriptorJson {
76 #[doc = "Construct a new `PublicKeyCredentialDescriptorJson`."]
77 #[doc = ""]
78 #[doc = "*This API requires the following crate features to be activated: `PublicKeyCredentialDescriptorJson`*"]
79 #[doc = ""]
80 #[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
81 #[doc = "[described in the `wasm-bindgen` guide](https://wasm-bindgen.github.io/wasm-bindgen/web-sys/unstable-apis.html)*"]
82 pub fn new(id: &str, type_: &str) -> Self {
83 #[allow(unused_mut)]
84 let mut ret: Self = ::wasm_bindgen::JsCast::unchecked_into(::js_sys::Object::new());
85 ret.set_id(id);
86 ret.set_type(type_);
87 ret
88 }
89 #[cfg(web_sys_unstable_apis)]
90 #[deprecated = "Use `set_id()` instead."]
91 pub fn id(&mut self, val: &str) -> &mut Self {
92 self.set_id(val);
93 self
94 }
95 #[cfg(web_sys_unstable_apis)]
96 #[deprecated = "Use `set_transports()` instead."]
97 pub fn transports(&mut self, val: &[::js_sys::JsString]) -> &mut Self {
98 self.set_transports(val);
99 self
100 }
101 #[cfg(web_sys_unstable_apis)]
102 #[deprecated = "Use `set_type()` instead."]
103 pub fn type_(&mut self, val: &str) -> &mut Self {
104 self.set_type(val);
105 self
106 }
107}