blob: 9c186a6c8e6c95ad75e1696afb1d82db5f03742b [file] [log] [blame]
#![allow(unused_imports)]
use super::*;
use wasm_bindgen::prelude::*;
#[wasm_bindgen]
extern "C" {
# [wasm_bindgen (extends = :: js_sys :: Object , js_name = RegistrationOptions)]
#[derive(Debug, Clone, PartialEq, Eq)]
#[doc = "The `RegistrationOptions` dictionary."]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `RegistrationOptions`*"]
pub type RegistrationOptions;
}
impl RegistrationOptions {
#[doc = "Construct a new `RegistrationOptions`."]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `RegistrationOptions`*"]
pub fn new() -> Self {
#[allow(unused_mut)]
let mut ret: Self = ::wasm_bindgen::JsCast::unchecked_into(::js_sys::Object::new());
ret
}
#[doc = "Change the `scope` field of this object."]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `RegistrationOptions`*"]
pub fn scope(&mut self, val: &str) -> &mut Self {
use wasm_bindgen::JsValue;
let r = ::js_sys::Reflect::set(self.as_ref(), &JsValue::from("scope"), &JsValue::from(val));
debug_assert!(
r.is_ok(),
"setting properties should never fail on our dictionary objects"
);
let _ = r;
self
}
#[cfg(feature = "ServiceWorkerUpdateViaCache")]
#[doc = "Change the `updateViaCache` field of this object."]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `RegistrationOptions`, `ServiceWorkerUpdateViaCache`*"]
pub fn update_via_cache(&mut self, val: ServiceWorkerUpdateViaCache) -> &mut Self {
use wasm_bindgen::JsValue;
let r = ::js_sys::Reflect::set(
self.as_ref(),
&JsValue::from("updateViaCache"),
&JsValue::from(val),
);
debug_assert!(
r.is_ok(),
"setting properties should never fail on our dictionary objects"
);
let _ = r;
self
}
}
impl Default for RegistrationOptions {
fn default() -> Self {
Self::new()
}
}