| #![allow(unused_imports)] |
| use wasm_bindgen::prelude::*; |
| # [wasm_bindgen (extends = :: js_sys :: Object , js_name = KeyAlgorithm)] |
| #[derive(Debug, Clone, PartialEq, Eq)] |
| #[doc = "The `KeyAlgorithm` dictionary."] |
| #[doc = "*This API requires the following crate features to be activated: `KeyAlgorithm`*"] |
| #[doc = "Construct a new `KeyAlgorithm`."] |
| #[doc = "*This API requires the following crate features to be activated: `KeyAlgorithm`*"] |
| pub fn new(name: &str) -> Self { |
| let mut ret: Self = ::wasm_bindgen::JsCast::unchecked_into(::js_sys::Object::new()); |
| #[doc = "Change the `name` field of this object."] |
| #[doc = "*This API requires the following crate features to be activated: `KeyAlgorithm`*"] |
| pub fn name(&mut self, val: &str) -> &mut Self { |
| use wasm_bindgen::JsValue; |
| let r = ::js_sys::Reflect::set(self.as_ref(), &JsValue::from("name"), &JsValue::from(val)); |
| "setting properties should never fail on our dictionary objects" |