Skip to main content

web_sys/features/
gen_HmacKeyGenParams.rs

1#![allow(unused_imports)]
2#![allow(clippy::all)]
3use super::*;
4use wasm_bindgen::prelude::*;
5#[wasm_bindgen]
6extern "C" {
7    # [wasm_bindgen (extends = :: js_sys :: Object , js_name = HmacKeyGenParams)]
8    #[derive(Debug, Clone, PartialEq, Eq)]
9    #[doc = "The `HmacKeyGenParams` dictionary."]
10    #[doc = ""]
11    #[doc = "*This API requires the following crate features to be activated: `HmacKeyGenParams`*"]
12    pub type HmacKeyGenParams;
13    #[doc = "Get the `name` field of this object."]
14    #[doc = ""]
15    #[doc = "*This API requires the following crate features to be activated: `HmacKeyGenParams`*"]
16    #[wasm_bindgen(method, getter = "name")]
17    pub fn get_name(this: &HmacKeyGenParams) -> ::alloc::string::String;
18    #[doc = "Change the `name` field of this object."]
19    #[doc = ""]
20    #[doc = "*This API requires the following crate features to be activated: `HmacKeyGenParams`*"]
21    #[wasm_bindgen(method, setter = "name")]
22    pub fn set_name(this: &HmacKeyGenParams, val: &str);
23    #[doc = "Get the `hash` field of this object."]
24    #[doc = ""]
25    #[doc = "*This API requires the following crate features to be activated: `HmacKeyGenParams`*"]
26    #[wasm_bindgen(method, getter = "hash")]
27    pub fn get_hash(this: &HmacKeyGenParams) -> ::wasm_bindgen::JsValue;
28    #[doc = "Change the `hash` field of this object."]
29    #[doc = ""]
30    #[doc = "*This API requires the following crate features to be activated: `HmacKeyGenParams`*"]
31    #[wasm_bindgen(method, setter = "hash")]
32    pub fn set_hash(this: &HmacKeyGenParams, val: &::wasm_bindgen::JsValue);
33    #[doc = "Change the `hash` field of this object."]
34    #[doc = ""]
35    #[doc = "*This API requires the following crate features to be activated: `HmacKeyGenParams`*"]
36    #[wasm_bindgen(method, setter = "hash")]
37    pub fn set_hash_object(this: &HmacKeyGenParams, val: &::js_sys::Object);
38    #[doc = "Change the `hash` field of this object."]
39    #[doc = ""]
40    #[doc = "*This API requires the following crate features to be activated: `HmacKeyGenParams`*"]
41    #[wasm_bindgen(method, setter = "hash")]
42    pub fn set_hash_str(this: &HmacKeyGenParams, val: &str);
43    #[doc = "Get the `length` field of this object."]
44    #[doc = ""]
45    #[doc = "*This API requires the following crate features to be activated: `HmacKeyGenParams`*"]
46    #[wasm_bindgen(method, getter = "length")]
47    pub fn get_length(this: &HmacKeyGenParams) -> Option<u32>;
48    #[doc = "Change the `length` field of this object."]
49    #[doc = ""]
50    #[doc = "*This API requires the following crate features to be activated: `HmacKeyGenParams`*"]
51    #[wasm_bindgen(method, setter = "length")]
52    pub fn set_length(this: &HmacKeyGenParams, val: u32);
53}
54impl HmacKeyGenParams {
55    #[doc = "Construct a new `HmacKeyGenParams`."]
56    #[doc = ""]
57    #[doc = "*This API requires the following crate features to be activated: `HmacKeyGenParams`*"]
58    pub fn new(name: &str, hash: &::wasm_bindgen::JsValue) -> Self {
59        #[allow(unused_mut)]
60        let mut ret: Self = ::wasm_bindgen::JsCast::unchecked_into(::js_sys::Object::new());
61        ret.set_name(name);
62        ret.set_hash(hash);
63        ret
64    }
65    #[doc = "Construct a new `HmacKeyGenParams`."]
66    #[doc = ""]
67    #[doc = "*This API requires the following crate features to be activated: `HmacKeyGenParams`*"]
68    pub fn new_with_object(name: &str, hash: &::js_sys::Object) -> Self {
69        #[allow(unused_mut)]
70        let mut ret: Self = ::wasm_bindgen::JsCast::unchecked_into(::js_sys::Object::new());
71        ret.set_name(name);
72        ret.set_hash_object(hash);
73        ret
74    }
75    #[doc = "Construct a new `HmacKeyGenParams`."]
76    #[doc = ""]
77    #[doc = "*This API requires the following crate features to be activated: `HmacKeyGenParams`*"]
78    pub fn new_with_str(name: &str, hash: &str) -> Self {
79        #[allow(unused_mut)]
80        let mut ret: Self = ::wasm_bindgen::JsCast::unchecked_into(::js_sys::Object::new());
81        ret.set_name(name);
82        ret.set_hash_str(hash);
83        ret
84    }
85    #[deprecated = "Use `set_name()` instead."]
86    pub fn name(&mut self, val: &str) -> &mut Self {
87        self.set_name(val);
88        self
89    }
90    #[deprecated = "Use `set_hash()` instead."]
91    pub fn hash(&mut self, val: &::wasm_bindgen::JsValue) -> &mut Self {
92        self.set_hash(val);
93        self
94    }
95    #[deprecated = "Use `set_length()` instead."]
96    pub fn length(&mut self, val: u32) -> &mut Self {
97        self.set_length(val);
98        self
99    }
100}