web_sys/features/
gen_EventListener.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 = EventListener)]
#[derive(Debug, Clone, PartialEq, Eq)]
#[doc = "The `EventListener` dictionary."]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `EventListener`*"]
pub type EventListener;
#[doc = "Get the `handleEvent` field of this object."]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `EventListener`*"]
#[wasm_bindgen(method, getter = "handleEvent")]
pub fn get_handle_event(this: &EventListener) -> Option<::js_sys::Function>;
#[doc = "Change the `handleEvent` field of this object."]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `EventListener`*"]
#[wasm_bindgen(method, setter = "handleEvent")]
pub fn set_handle_event(this: &EventListener, val: &::js_sys::Function);
}
impl EventListener {
#[doc = "Construct a new `EventListener`."]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `EventListener`*"]
pub fn new() -> Self {
#[allow(unused_mut)]
let mut ret: Self = ::wasm_bindgen::JsCast::unchecked_into(::js_sys::Object::new());
ret
}
#[deprecated = "Use `set_handle_event()` instead."]
pub fn handle_event(&mut self, val: &::js_sys::Function) -> &mut Self {
self.set_handle_event(val);
self
}
}
impl Default for EventListener {
fn default() -> Self {
Self::new()
}
}