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
#![allow(unused_imports)]
use super::*;
use wasm_bindgen::prelude::*;
#[wasm_bindgen]
extern "C" {
    # [ wasm_bindgen ( extends = :: js_sys :: Object , js_name = VideoTrack , typescript_type = "VideoTrack" ) ]
    #[derive(Debug, Clone, PartialEq, Eq)]
    #[doc = "The `VideoTrack` class."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/VideoTrack)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `VideoTrack`*"]
    pub type VideoTrack;
    # [ wasm_bindgen ( structural , method , getter , js_class = "VideoTrack" , 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/VideoTrack/id)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `VideoTrack`*"]
    pub fn id(this: &VideoTrack) -> String;
    # [ wasm_bindgen ( structural , method , getter , js_class = "VideoTrack" , js_name = kind ) ]
    #[doc = "Getter for the `kind` field of this object."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/VideoTrack/kind)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `VideoTrack`*"]
    pub fn kind(this: &VideoTrack) -> String;
    # [ wasm_bindgen ( structural , method , getter , js_class = "VideoTrack" , js_name = label ) ]
    #[doc = "Getter for the `label` field of this object."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/VideoTrack/label)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `VideoTrack`*"]
    pub fn label(this: &VideoTrack) -> String;
    # [ wasm_bindgen ( structural , method , getter , js_class = "VideoTrack" , js_name = language ) ]
    #[doc = "Getter for the `language` field of this object."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/VideoTrack/language)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `VideoTrack`*"]
    pub fn language(this: &VideoTrack) -> String;
    # [ wasm_bindgen ( structural , method , getter , js_class = "VideoTrack" , js_name = selected ) ]
    #[doc = "Getter for the `selected` field of this object."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/VideoTrack/selected)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `VideoTrack`*"]
    pub fn selected(this: &VideoTrack) -> bool;
    # [ wasm_bindgen ( structural , method , setter , js_class = "VideoTrack" , js_name = selected ) ]
    #[doc = "Setter for the `selected` field of this object."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/VideoTrack/selected)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `VideoTrack`*"]
    pub fn set_selected(this: &VideoTrack, value: bool);
}