web_sys/features/
gen_PublicKeyCredentialUserEntityJson.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 = PublicKeyCredentialUserEntityJSON)]
9 #[derive(Debug, Clone, PartialEq, Eq)]
10 #[doc = "The `PublicKeyCredentialUserEntityJson` dictionary."]
11 #[doc = ""]
12 #[doc = "*This API requires the following crate features to be activated: `PublicKeyCredentialUserEntityJson`*"]
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 PublicKeyCredentialUserEntityJson;
17 #[cfg(web_sys_unstable_apis)]
18 #[doc = "Get the `displayName` field of this object."]
19 #[doc = ""]
20 #[doc = "*This API requires the following crate features to be activated: `PublicKeyCredentialUserEntityJson`*"]
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 = "displayName")]
25 pub fn get_display_name(this: &PublicKeyCredentialUserEntityJson) -> ::alloc::string::String;
26 #[cfg(web_sys_unstable_apis)]
27 #[doc = "Change the `displayName` field of this object."]
28 #[doc = ""]
29 #[doc = "*This API requires the following crate features to be activated: `PublicKeyCredentialUserEntityJson`*"]
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 = "displayName")]
34 pub fn set_display_name(this: &PublicKeyCredentialUserEntityJson, val: &str);
35 #[cfg(web_sys_unstable_apis)]
36 #[doc = "Get the `id` field of this object."]
37 #[doc = ""]
38 #[doc = "*This API requires the following crate features to be activated: `PublicKeyCredentialUserEntityJson`*"]
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 = "id")]
43 pub fn get_id(this: &PublicKeyCredentialUserEntityJson) -> ::alloc::string::String;
44 #[cfg(web_sys_unstable_apis)]
45 #[doc = "Change the `id` field of this object."]
46 #[doc = ""]
47 #[doc = "*This API requires the following crate features to be activated: `PublicKeyCredentialUserEntityJson`*"]
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://wasm-bindgen.github.io/wasm-bindgen/web-sys/unstable-apis.html)*"]
51 #[wasm_bindgen(method, setter = "id")]
52 pub fn set_id(this: &PublicKeyCredentialUserEntityJson, val: &str);
53 #[cfg(web_sys_unstable_apis)]
54 #[doc = "Get the `name` field of this object."]
55 #[doc = ""]
56 #[doc = "*This API requires the following crate features to be activated: `PublicKeyCredentialUserEntityJson`*"]
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://wasm-bindgen.github.io/wasm-bindgen/web-sys/unstable-apis.html)*"]
60 #[wasm_bindgen(method, getter = "name")]
61 pub fn get_name(this: &PublicKeyCredentialUserEntityJson) -> ::alloc::string::String;
62 #[cfg(web_sys_unstable_apis)]
63 #[doc = "Change the `name` field of this object."]
64 #[doc = ""]
65 #[doc = "*This API requires the following crate features to be activated: `PublicKeyCredentialUserEntityJson`*"]
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://wasm-bindgen.github.io/wasm-bindgen/web-sys/unstable-apis.html)*"]
69 #[wasm_bindgen(method, setter = "name")]
70 pub fn set_name(this: &PublicKeyCredentialUserEntityJson, val: &str);
71}
72#[cfg(web_sys_unstable_apis)]
73impl PublicKeyCredentialUserEntityJson {
74 #[doc = "Construct a new `PublicKeyCredentialUserEntityJson`."]
75 #[doc = ""]
76 #[doc = "*This API requires the following crate features to be activated: `PublicKeyCredentialUserEntityJson`*"]
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://wasm-bindgen.github.io/wasm-bindgen/web-sys/unstable-apis.html)*"]
80 pub fn new(display_name: &str, id: &str, name: &str) -> Self {
81 #[allow(unused_mut)]
82 let mut ret: Self = ::wasm_bindgen::JsCast::unchecked_into(::js_sys::Object::new());
83 ret.set_display_name(display_name);
84 ret.set_id(id);
85 ret.set_name(name);
86 ret
87 }
88 #[cfg(web_sys_unstable_apis)]
89 #[deprecated = "Use `set_display_name()` instead."]
90 pub fn display_name(&mut self, val: &str) -> &mut Self {
91 self.set_display_name(val);
92 self
93 }
94 #[cfg(web_sys_unstable_apis)]
95 #[deprecated = "Use `set_id()` instead."]
96 pub fn id(&mut self, val: &str) -> &mut Self {
97 self.set_id(val);
98 self
99 }
100 #[cfg(web_sys_unstable_apis)]
101 #[deprecated = "Use `set_name()` instead."]
102 pub fn name(&mut self, val: &str) -> &mut Self {
103 self.set_name(val);
104 self
105 }
106}