web_sys/features/
gen_HmacDerivedKeyParams.rs1#![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 = HmacDerivedKeyParams)]
8 #[derive(Debug, Clone, PartialEq, Eq)]
9 #[doc = "The `HmacDerivedKeyParams` dictionary."]
10 #[doc = ""]
11 #[doc = "*This API requires the following crate features to be activated: `HmacDerivedKeyParams`*"]
12 pub type HmacDerivedKeyParams;
13 #[doc = "Get the `name` field of this object."]
14 #[doc = ""]
15 #[doc = "*This API requires the following crate features to be activated: `HmacDerivedKeyParams`*"]
16 #[wasm_bindgen(method, getter = "name")]
17 pub fn get_name(this: &HmacDerivedKeyParams) -> ::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: `HmacDerivedKeyParams`*"]
21 #[wasm_bindgen(method, setter = "name")]
22 pub fn set_name(this: &HmacDerivedKeyParams, 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: `HmacDerivedKeyParams`*"]
26 #[wasm_bindgen(method, getter = "hash")]
27 pub fn get_hash(this: &HmacDerivedKeyParams) -> ::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: `HmacDerivedKeyParams`*"]
31 #[wasm_bindgen(method, setter = "hash")]
32 pub fn set_hash(this: &HmacDerivedKeyParams, 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: `HmacDerivedKeyParams`*"]
36 #[wasm_bindgen(method, setter = "hash")]
37 pub fn set_hash_object(this: &HmacDerivedKeyParams, 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: `HmacDerivedKeyParams`*"]
41 #[wasm_bindgen(method, setter = "hash")]
42 pub fn set_hash_str(this: &HmacDerivedKeyParams, 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: `HmacDerivedKeyParams`*"]
46 #[wasm_bindgen(method, getter = "length")]
47 pub fn get_length(this: &HmacDerivedKeyParams) -> 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: `HmacDerivedKeyParams`*"]
51 #[wasm_bindgen(method, setter = "length")]
52 pub fn set_length(this: &HmacDerivedKeyParams, val: u32);
53}
54impl HmacDerivedKeyParams {
55 #[doc = "Construct a new `HmacDerivedKeyParams`."]
56 #[doc = ""]
57 #[doc = "*This API requires the following crate features to be activated: `HmacDerivedKeyParams`*"]
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 `HmacDerivedKeyParams`."]
66 #[doc = ""]
67 #[doc = "*This API requires the following crate features to be activated: `HmacDerivedKeyParams`*"]
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 `HmacDerivedKeyParams`."]
76 #[doc = ""]
77 #[doc = "*This API requires the following crate features to be activated: `HmacDerivedKeyParams`*"]
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}