]> git.proxmox.com Git - rustc.git/blob - vendor/web-sys/src/features/gen_PushSubscriptionJson.rs
New upstream version 1.72.1+dfsg1
[rustc.git] / vendor / web-sys / src / features / gen_PushSubscriptionJson.rs
1 #![allow(unused_imports)]
2 #![allow(clippy::all)]
3 use super::*;
4 use wasm_bindgen::prelude::*;
5 #[wasm_bindgen]
6 extern "C" {
7 # [wasm_bindgen (extends = :: js_sys :: Object , js_name = PushSubscriptionJSON)]
8 #[derive(Debug, Clone, PartialEq, Eq)]
9 #[doc = "The `PushSubscriptionJson` dictionary."]
10 #[doc = ""]
11 #[doc = "*This API requires the following crate features to be activated: `PushSubscriptionJson`*"]
12 pub type PushSubscriptionJson;
13 }
14 impl PushSubscriptionJson {
15 #[doc = "Construct a new `PushSubscriptionJson`."]
16 #[doc = ""]
17 #[doc = "*This API requires the following crate features to be activated: `PushSubscriptionJson`*"]
18 pub fn new() -> Self {
19 #[allow(unused_mut)]
20 let mut ret: Self = ::wasm_bindgen::JsCast::unchecked_into(::js_sys::Object::new());
21 ret
22 }
23 #[doc = "Change the `endpoint` field of this object."]
24 #[doc = ""]
25 #[doc = "*This API requires the following crate features to be activated: `PushSubscriptionJson`*"]
26 pub fn endpoint(&mut self, val: &str) -> &mut Self {
27 use wasm_bindgen::JsValue;
28 let r = ::js_sys::Reflect::set(
29 self.as_ref(),
30 &JsValue::from("endpoint"),
31 &JsValue::from(val),
32 );
33 debug_assert!(
34 r.is_ok(),
35 "setting properties should never fail on our dictionary objects"
36 );
37 let _ = r;
38 self
39 }
40 #[cfg(feature = "PushSubscriptionKeys")]
41 #[doc = "Change the `keys` field of this object."]
42 #[doc = ""]
43 #[doc = "*This API requires the following crate features to be activated: `PushSubscriptionJson`, `PushSubscriptionKeys`*"]
44 pub fn keys(&mut self, val: &PushSubscriptionKeys) -> &mut Self {
45 use wasm_bindgen::JsValue;
46 let r = ::js_sys::Reflect::set(self.as_ref(), &JsValue::from("keys"), &JsValue::from(val));
47 debug_assert!(
48 r.is_ok(),
49 "setting properties should never fail on our dictionary objects"
50 );
51 let _ = r;
52 self
53 }
54 }
55 impl Default for PushSubscriptionJson {
56 fn default() -> Self {
57 Self::new()
58 }
59 }