web_sys/features/
gen_AuthenticationExtensionsPrfValues.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 = AuthenticationExtensionsPRFValues)]
9 #[derive(Debug, Clone, PartialEq, Eq)]
10 #[doc = "The `AuthenticationExtensionsPrfValues` dictionary."]
11 #[doc = ""]
12 #[doc = "*This API requires the following crate features to be activated: `AuthenticationExtensionsPrfValues`*"]
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 AuthenticationExtensionsPrfValues;
17 #[cfg(web_sys_unstable_apis)]
18 #[doc = "Get the `first` field of this object."]
19 #[doc = ""]
20 #[doc = "*This API requires the following crate features to be activated: `AuthenticationExtensionsPrfValues`*"]
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 = "first")]
25 pub fn get_first(this: &AuthenticationExtensionsPrfValues) -> ::js_sys::Object;
26 #[cfg(web_sys_unstable_apis)]
27 #[doc = "Change the `first` field of this object."]
28 #[doc = ""]
29 #[doc = "*This API requires the following crate features to be activated: `AuthenticationExtensionsPrfValues`*"]
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 = "first")]
34 pub fn set_first(this: &AuthenticationExtensionsPrfValues, val: &::js_sys::Object);
35 #[cfg(web_sys_unstable_apis)]
36 #[doc = "Get the `second` field of this object."]
37 #[doc = ""]
38 #[doc = "*This API requires the following crate features to be activated: `AuthenticationExtensionsPrfValues`*"]
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 = "second")]
43 pub fn get_second(this: &AuthenticationExtensionsPrfValues) -> Option<::js_sys::Object>;
44 #[cfg(web_sys_unstable_apis)]
45 #[doc = "Change the `second` field of this object."]
46 #[doc = ""]
47 #[doc = "*This API requires the following crate features to be activated: `AuthenticationExtensionsPrfValues`*"]
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 = "second")]
52 pub fn set_second(this: &AuthenticationExtensionsPrfValues, val: &::js_sys::Object);
53}
54#[cfg(web_sys_unstable_apis)]
55impl AuthenticationExtensionsPrfValues {
56 #[doc = "Construct a new `AuthenticationExtensionsPrfValues`."]
57 #[doc = ""]
58 #[doc = "*This API requires the following crate features to be activated: `AuthenticationExtensionsPrfValues`*"]
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://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
62 pub fn new(first: &::js_sys::Object) -> Self {
63 #[allow(unused_mut)]
64 let mut ret: Self = ::wasm_bindgen::JsCast::unchecked_into(::js_sys::Object::new());
65 ret.set_first(first);
66 ret
67 }
68 #[cfg(web_sys_unstable_apis)]
69 #[deprecated = "Use `set_first()` instead."]
70 pub fn first(&mut self, val: &::js_sys::Object) -> &mut Self {
71 self.set_first(val);
72 self
73 }
74 #[cfg(web_sys_unstable_apis)]
75 #[deprecated = "Use `set_second()` instead."]
76 pub fn second(&mut self, val: &::js_sys::Object) -> &mut Self {
77 self.set_second(val);
78 self
79 }
80}