web_sys/features/
gen_AuthenticationExtensionsClientInputsJson.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(
9 extends = "::js_sys::Object",
10 js_name = "AuthenticationExtensionsClientInputsJSON"
11 )]
12 #[derive(Debug, Clone, PartialEq, Eq)]
13 #[doc = "The `AuthenticationExtensionsClientInputsJson` dictionary."]
14 #[doc = ""]
15 #[doc = "*This API requires the following crate features to be activated: `AuthenticationExtensionsClientInputsJson`*"]
16 #[doc = ""]
17 #[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
18 #[doc = "[described in the `wasm-bindgen` guide](https://wasm-bindgen.github.io/wasm-bindgen/web-sys/unstable-apis.html)*"]
19 pub type AuthenticationExtensionsClientInputsJson;
20}
21#[cfg(web_sys_unstable_apis)]
22impl AuthenticationExtensionsClientInputsJson {
23 #[doc = "Construct a new `AuthenticationExtensionsClientInputsJson`."]
24 #[doc = ""]
25 #[doc = "*This API requires the following crate features to be activated: `AuthenticationExtensionsClientInputsJson`*"]
26 #[doc = ""]
27 #[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
28 #[doc = "[described in the `wasm-bindgen` guide](https://wasm-bindgen.github.io/wasm-bindgen/web-sys/unstable-apis.html)*"]
29 pub fn new() -> Self {
30 #[allow(unused_mut)]
31 let mut ret: Self = ::wasm_bindgen::JsCast::unchecked_into(::js_sys::Object::new());
32 ret
33 }
34}
35#[cfg(web_sys_unstable_apis)]
36impl Default for AuthenticationExtensionsClientInputsJson {
37 fn default() -> Self {
38 Self::new()
39 }
40}