web_sys/features/
gen_HmacKeyGenParams.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 = 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 = "Get the `length` field of this object."]
34 #[doc = ""]
35 #[doc = "*This API requires the following crate features to be activated: `HmacKeyGenParams`*"]
36 #[wasm_bindgen(method, getter = "length")]
37 pub fn get_length(this: &HmacKeyGenParams) -> Option<u32>;
38 #[doc = "Change the `length` field of this object."]
39 #[doc = ""]
40 #[doc = "*This API requires the following crate features to be activated: `HmacKeyGenParams`*"]
41 #[wasm_bindgen(method, setter = "length")]
42 pub fn set_length(this: &HmacKeyGenParams, val: u32);
43}
44impl HmacKeyGenParams {
45 #[doc = "Construct a new `HmacKeyGenParams`."]
46 #[doc = ""]
47 #[doc = "*This API requires the following crate features to be activated: `HmacKeyGenParams`*"]
48 pub fn new(name: &str, hash: &::wasm_bindgen::JsValue) -> Self {
49 #[allow(unused_mut)]
50 let mut ret: Self = ::wasm_bindgen::JsCast::unchecked_into(::js_sys::Object::new());
51 ret.set_name(name);
52 ret.set_hash(hash);
53 ret
54 }
55 #[deprecated = "Use `set_name()` instead."]
56 pub fn name(&mut self, val: &str) -> &mut Self {
57 self.set_name(val);
58 self
59 }
60 #[deprecated = "Use `set_hash()` instead."]
61 pub fn hash(&mut self, val: &::wasm_bindgen::JsValue) -> &mut Self {
62 self.set_hash(val);
63 self
64 }
65 #[deprecated = "Use `set_length()` instead."]
66 pub fn length(&mut self, val: u32) -> &mut Self {
67 self.set_length(val);
68 self
69 }
70}