web_sys/features/
gen_DomWindowResizeEventDetail.rs#![allow(unused_imports)]
#![allow(clippy::all)]
use super::*;
use wasm_bindgen::prelude::*;
#[wasm_bindgen]
extern "C" {
# [wasm_bindgen (extends = :: js_sys :: Object , js_name = DOMWindowResizeEventDetail)]
#[derive(Debug, Clone, PartialEq, Eq)]
#[doc = "The `DomWindowResizeEventDetail` dictionary."]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `DomWindowResizeEventDetail`*"]
pub type DomWindowResizeEventDetail;
#[doc = "Get the `height` field of this object."]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `DomWindowResizeEventDetail`*"]
#[wasm_bindgen(method, getter = "height")]
pub fn get_height(this: &DomWindowResizeEventDetail) -> Option<i32>;
#[doc = "Change the `height` field of this object."]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `DomWindowResizeEventDetail`*"]
#[wasm_bindgen(method, setter = "height")]
pub fn set_height(this: &DomWindowResizeEventDetail, val: i32);
#[doc = "Get the `width` field of this object."]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `DomWindowResizeEventDetail`*"]
#[wasm_bindgen(method, getter = "width")]
pub fn get_width(this: &DomWindowResizeEventDetail) -> Option<i32>;
#[doc = "Change the `width` field of this object."]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `DomWindowResizeEventDetail`*"]
#[wasm_bindgen(method, setter = "width")]
pub fn set_width(this: &DomWindowResizeEventDetail, val: i32);
}
impl DomWindowResizeEventDetail {
#[doc = "Construct a new `DomWindowResizeEventDetail`."]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `DomWindowResizeEventDetail`*"]
pub fn new() -> Self {
#[allow(unused_mut)]
let mut ret: Self = ::wasm_bindgen::JsCast::unchecked_into(::js_sys::Object::new());
ret
}
#[deprecated = "Use `set_height()` instead."]
pub fn height(&mut self, val: i32) -> &mut Self {
self.set_height(val);
self
}
#[deprecated = "Use `set_width()` instead."]
pub fn width(&mut self, val: i32) -> &mut Self {
self.set_width(val);
self
}
}
impl Default for DomWindowResizeEventDetail {
fn default() -> Self {
Self::new()
}
}