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