web_sys/features/
gen_MediaEncryptedEvent.rs1#![allow(unused_imports)]
2#![allow(clippy::all)]
3use super::*;
4use wasm_bindgen::prelude::*;
5#[wasm_bindgen]
6extern "C" {
7 # [wasm_bindgen (extends = Event , extends = :: js_sys :: Object , js_name = MediaEncryptedEvent , typescript_type = "MediaEncryptedEvent")]
8 #[derive(Debug, Clone, PartialEq, Eq)]
9 #[doc = "The `MediaEncryptedEvent` class."]
10 #[doc = ""]
11 #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/MediaEncryptedEvent)"]
12 #[doc = ""]
13 #[doc = "*This API requires the following crate features to be activated: `MediaEncryptedEvent`*"]
14 pub type MediaEncryptedEvent;
15 # [wasm_bindgen (structural , method , getter , js_class = "MediaEncryptedEvent" , js_name = initDataType)]
16 #[doc = "Getter for the `initDataType` field of this object."]
17 #[doc = ""]
18 #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/MediaEncryptedEvent/initDataType)"]
19 #[doc = ""]
20 #[doc = "*This API requires the following crate features to be activated: `MediaEncryptedEvent`*"]
21 pub fn init_data_type(this: &MediaEncryptedEvent) -> ::alloc::string::String;
22 # [wasm_bindgen (structural , catch , method , getter , js_class = "MediaEncryptedEvent" , js_name = initData)]
23 #[doc = "Getter for the `initData` field of this object."]
24 #[doc = ""]
25 #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/MediaEncryptedEvent/initData)"]
26 #[doc = ""]
27 #[doc = "*This API requires the following crate features to be activated: `MediaEncryptedEvent`*"]
28 pub fn init_data(this: &MediaEncryptedEvent) -> Result<Option<::js_sys::ArrayBuffer>, JsValue>;
29 #[wasm_bindgen(catch, constructor, js_class = "MediaEncryptedEvent")]
30 #[doc = "The `new MediaEncryptedEvent(..)` constructor, creating a new instance of `MediaEncryptedEvent`."]
31 #[doc = ""]
32 #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/MediaEncryptedEvent/MediaEncryptedEvent)"]
33 #[doc = ""]
34 #[doc = "*This API requires the following crate features to be activated: `MediaEncryptedEvent`*"]
35 pub fn new(type_: &str) -> Result<MediaEncryptedEvent, JsValue>;
36 #[cfg(feature = "MediaKeyNeededEventInit")]
37 #[wasm_bindgen(catch, constructor, js_class = "MediaEncryptedEvent")]
38 #[doc = "The `new MediaEncryptedEvent(..)` constructor, creating a new instance of `MediaEncryptedEvent`."]
39 #[doc = ""]
40 #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/MediaEncryptedEvent/MediaEncryptedEvent)"]
41 #[doc = ""]
42 #[doc = "*This API requires the following crate features to be activated: `MediaEncryptedEvent`, `MediaKeyNeededEventInit`*"]
43 pub fn new_with_event_init_dict(
44 type_: &str,
45 event_init_dict: &MediaKeyNeededEventInit,
46 ) -> Result<MediaEncryptedEvent, JsValue>;
47}