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