maxcountryman_web_sys/features/
gen_PublicKeyCredentialParameters.rs

1#![allow(unused_imports)]
2use super::*;
3use wasm_bindgen::prelude::*;
4#[wasm_bindgen]
5extern "C" {
6    # [wasm_bindgen (extends = :: js_sys :: Object , js_name = PublicKeyCredentialParameters)]
7    #[derive(Debug, Clone, PartialEq, Eq)]
8    #[doc = "The `PublicKeyCredentialParameters` dictionary."]
9    #[doc = ""]
10    #[doc = "*This API requires the following crate features to be activated: `PublicKeyCredentialParameters`*"]
11    pub type PublicKeyCredentialParameters;
12}
13impl PublicKeyCredentialParameters {
14    #[cfg(feature = "PublicKeyCredentialType")]
15    #[doc = "Construct a new `PublicKeyCredentialParameters`."]
16    #[doc = ""]
17    #[doc = "*This API requires the following crate features to be activated: `PublicKeyCredentialParameters`, `PublicKeyCredentialType`*"]
18    pub fn new(alg: i32, type_: PublicKeyCredentialType) -> Self {
19        #[allow(unused_mut)]
20        let mut ret: Self = ::wasm_bindgen::JsCast::unchecked_into(::js_sys::Object::new());
21        ret.alg(alg);
22        ret.type_(type_);
23        ret
24    }
25    #[doc = "Change the `alg` field of this object."]
26    #[doc = ""]
27    #[doc = "*This API requires the following crate features to be activated: `PublicKeyCredentialParameters`*"]
28    pub fn alg(&mut self, val: i32) -> &mut Self {
29        use wasm_bindgen::JsValue;
30        let r = ::js_sys::Reflect::set(self.as_ref(), &JsValue::from("alg"), &JsValue::from(val));
31        debug_assert!(
32            r.is_ok(),
33            "setting properties should never fail on our dictionary objects"
34        );
35        let _ = r;
36        self
37    }
38    #[cfg(feature = "PublicKeyCredentialType")]
39    #[doc = "Change the `type` field of this object."]
40    #[doc = ""]
41    #[doc = "*This API requires the following crate features to be activated: `PublicKeyCredentialParameters`, `PublicKeyCredentialType`*"]
42    pub fn type_(&mut self, val: PublicKeyCredentialType) -> &mut Self {
43        use wasm_bindgen::JsValue;
44        let r = ::js_sys::Reflect::set(self.as_ref(), &JsValue::from("type"), &JsValue::from(val));
45        debug_assert!(
46            r.is_ok(),
47            "setting properties should never fail on our dictionary objects"
48        );
49        let _ = r;
50        self
51    }
52}