1 #![allow(unused_imports)]
2 use super::*;
3 use wasm_bindgen::prelude::*;
4 #[wasm_bindgen]
5 extern "C" {
6     # [ wasm_bindgen ( extends = :: js_sys :: Object , js_name = VideoPlaybackQuality , typescript_type = "VideoPlaybackQuality" ) ]
7     #[derive(Debug, Clone, PartialEq, Eq)]
8     #[doc = "The `VideoPlaybackQuality` class."]
9     #[doc = ""]
10     #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/VideoPlaybackQuality)"]
11     #[doc = ""]
12     #[doc = "*This API requires the following crate features to be activated: `VideoPlaybackQuality`*"]
13     pub type VideoPlaybackQuality;
14     # [ wasm_bindgen ( structural , method , getter , js_class = "VideoPlaybackQuality" , js_name = creationTime ) ]
15     #[doc = "Getter for the `creationTime` field of this object."]
16     #[doc = ""]
17     #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/VideoPlaybackQuality/creationTime)"]
18     #[doc = ""]
19     #[doc = "*This API requires the following crate features to be activated: `VideoPlaybackQuality`*"]
creation_time(this: &VideoPlaybackQuality) -> f6420     pub fn creation_time(this: &VideoPlaybackQuality) -> f64;
21     # [ wasm_bindgen ( structural , method , getter , js_class = "VideoPlaybackQuality" , js_name = totalVideoFrames ) ]
22     #[doc = "Getter for the `totalVideoFrames` field of this object."]
23     #[doc = ""]
24     #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/VideoPlaybackQuality/totalVideoFrames)"]
25     #[doc = ""]
26     #[doc = "*This API requires the following crate features to be activated: `VideoPlaybackQuality`*"]
total_video_frames(this: &VideoPlaybackQuality) -> u3227     pub fn total_video_frames(this: &VideoPlaybackQuality) -> u32;
28     # [ wasm_bindgen ( structural , method , getter , js_class = "VideoPlaybackQuality" , js_name = droppedVideoFrames ) ]
29     #[doc = "Getter for the `droppedVideoFrames` field of this object."]
30     #[doc = ""]
31     #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/VideoPlaybackQuality/droppedVideoFrames)"]
32     #[doc = ""]
33     #[doc = "*This API requires the following crate features to be activated: `VideoPlaybackQuality`*"]
dropped_video_frames(this: &VideoPlaybackQuality) -> u3234     pub fn dropped_video_frames(this: &VideoPlaybackQuality) -> u32;
35     # [ wasm_bindgen ( structural , method , getter , js_class = "VideoPlaybackQuality" , js_name = corruptedVideoFrames ) ]
36     #[doc = "Getter for the `corruptedVideoFrames` field of this object."]
37     #[doc = ""]
38     #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/VideoPlaybackQuality/corruptedVideoFrames)"]
39     #[doc = ""]
40     #[doc = "*This API requires the following crate features to be activated: `VideoPlaybackQuality`*"]
corrupted_video_frames(this: &VideoPlaybackQuality) -> u3241     pub fn corrupted_video_frames(this: &VideoPlaybackQuality) -> u32;
42 }
43