1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
#![allow(unused_imports)]
#![allow(clippy::all)]
use super::*;
use wasm_bindgen::prelude::*;
#[wasm_bindgen]
extern "C" {
    # [wasm_bindgen (extends = EventTarget , extends = :: js_sys :: Object , js_name = TextTrackCue , typescript_type = "TextTrackCue")]
    #[derive(Debug, Clone, PartialEq, Eq)]
    #[doc = "The `TextTrackCue` class."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/TextTrackCue)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `TextTrackCue`*"]
    pub type TextTrackCue;
    #[cfg(feature = "TextTrack")]
    # [wasm_bindgen (structural , method , getter , js_class = "TextTrackCue" , js_name = track)]
    #[doc = "Getter for the `track` field of this object."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/TextTrackCue/track)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `TextTrack`, `TextTrackCue`*"]
    pub fn track(this: &TextTrackCue) -> Option<TextTrack>;
    # [wasm_bindgen (structural , method , getter , js_class = "TextTrackCue" , js_name = id)]
    #[doc = "Getter for the `id` field of this object."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/TextTrackCue/id)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `TextTrackCue`*"]
    pub fn id(this: &TextTrackCue) -> String;
    # [wasm_bindgen (structural , method , setter , js_class = "TextTrackCue" , js_name = id)]
    #[doc = "Setter for the `id` field of this object."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/TextTrackCue/id)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `TextTrackCue`*"]
    pub fn set_id(this: &TextTrackCue, value: &str);
    # [wasm_bindgen (structural , method , getter , js_class = "TextTrackCue" , js_name = startTime)]
    #[doc = "Getter for the `startTime` field of this object."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/TextTrackCue/startTime)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `TextTrackCue`*"]
    pub fn start_time(this: &TextTrackCue) -> f64;
    # [wasm_bindgen (structural , method , setter , js_class = "TextTrackCue" , js_name = startTime)]
    #[doc = "Setter for the `startTime` field of this object."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/TextTrackCue/startTime)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `TextTrackCue`*"]
    pub fn set_start_time(this: &TextTrackCue, value: f64);
    # [wasm_bindgen (structural , method , getter , js_class = "TextTrackCue" , js_name = endTime)]
    #[doc = "Getter for the `endTime` field of this object."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/TextTrackCue/endTime)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `TextTrackCue`*"]
    pub fn end_time(this: &TextTrackCue) -> f64;
    # [wasm_bindgen (structural , method , setter , js_class = "TextTrackCue" , js_name = endTime)]
    #[doc = "Setter for the `endTime` field of this object."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/TextTrackCue/endTime)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `TextTrackCue`*"]
    pub fn set_end_time(this: &TextTrackCue, value: f64);
    # [wasm_bindgen (structural , method , getter , js_class = "TextTrackCue" , js_name = pauseOnExit)]
    #[doc = "Getter for the `pauseOnExit` field of this object."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/TextTrackCue/pauseOnExit)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `TextTrackCue`*"]
    pub fn pause_on_exit(this: &TextTrackCue) -> bool;
    # [wasm_bindgen (structural , method , setter , js_class = "TextTrackCue" , js_name = pauseOnExit)]
    #[doc = "Setter for the `pauseOnExit` field of this object."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/TextTrackCue/pauseOnExit)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `TextTrackCue`*"]
    pub fn set_pause_on_exit(this: &TextTrackCue, value: bool);
    # [wasm_bindgen (structural , method , getter , js_class = "TextTrackCue" , js_name = onenter)]
    #[doc = "Getter for the `onenter` field of this object."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/TextTrackCue/onenter)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `TextTrackCue`*"]
    pub fn onenter(this: &TextTrackCue) -> Option<::js_sys::Function>;
    # [wasm_bindgen (structural , method , setter , js_class = "TextTrackCue" , js_name = onenter)]
    #[doc = "Setter for the `onenter` field of this object."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/TextTrackCue/onenter)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `TextTrackCue`*"]
    pub fn set_onenter(this: &TextTrackCue, value: Option<&::js_sys::Function>);
    # [wasm_bindgen (structural , method , getter , js_class = "TextTrackCue" , js_name = onexit)]
    #[doc = "Getter for the `onexit` field of this object."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/TextTrackCue/onexit)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `TextTrackCue`*"]
    pub fn onexit(this: &TextTrackCue) -> Option<::js_sys::Function>;
    # [wasm_bindgen (structural , method , setter , js_class = "TextTrackCue" , js_name = onexit)]
    #[doc = "Setter for the `onexit` field of this object."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/TextTrackCue/onexit)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `TextTrackCue`*"]
    pub fn set_onexit(this: &TextTrackCue, value: Option<&::js_sys::Function>);
}