web_sys/features/
gen_RsaPssParams.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 = RsaPssParams)]
8    #[derive(Debug, Clone, PartialEq, Eq)]
9    #[doc = "The `RsaPssParams` dictionary."]
10    #[doc = ""]
11    #[doc = "*This API requires the following crate features to be activated: `RsaPssParams`*"]
12    pub type RsaPssParams;
13    #[doc = "Get the `name` field of this object."]
14    #[doc = ""]
15    #[doc = "*This API requires the following crate features to be activated: `RsaPssParams`*"]
16    #[wasm_bindgen(method, getter = "name")]
17    pub fn get_name(this: &RsaPssParams) -> ::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: `RsaPssParams`*"]
21    #[wasm_bindgen(method, setter = "name")]
22    pub fn set_name(this: &RsaPssParams, val: &str);
23    #[doc = "Get the `saltLength` field of this object."]
24    #[doc = ""]
25    #[doc = "*This API requires the following crate features to be activated: `RsaPssParams`*"]
26    #[wasm_bindgen(method, getter = "saltLength")]
27    pub fn get_salt_length(this: &RsaPssParams) -> u32;
28    #[doc = "Change the `saltLength` field of this object."]
29    #[doc = ""]
30    #[doc = "*This API requires the following crate features to be activated: `RsaPssParams`*"]
31    #[wasm_bindgen(method, setter = "saltLength")]
32    pub fn set_salt_length(this: &RsaPssParams, val: u32);
33}
34impl RsaPssParams {
35    #[doc = "Construct a new `RsaPssParams`."]
36    #[doc = ""]
37    #[doc = "*This API requires the following crate features to be activated: `RsaPssParams`*"]
38    pub fn new(name: &str, salt_length: u32) -> Self {
39        #[allow(unused_mut)]
40        let mut ret: Self = ::wasm_bindgen::JsCast::unchecked_into(::js_sys::Object::new());
41        ret.set_name(name);
42        ret.set_salt_length(salt_length);
43        ret
44    }
45    #[deprecated = "Use `set_name()` instead."]
46    pub fn name(&mut self, val: &str) -> &mut Self {
47        self.set_name(val);
48        self
49    }
50    #[deprecated = "Use `set_salt_length()` instead."]
51    pub fn salt_length(&mut self, val: u32) -> &mut Self {
52        self.set_salt_length(val);
53        self
54    }
55}