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
|
#![allow(unused_imports)]
#![allow(clippy::all)]
use super::*;
use wasm_bindgen::prelude::*;
#[wasm_bindgen]
extern "C" {
# [wasm_bindgen (extends = Event , extends = :: js_sys :: Object , js_name = RTCTrackEvent , typescript_type = "RTCTrackEvent")]
#[derive(Debug, Clone, PartialEq, Eq)]
#[doc = "The `RtcTrackEvent` class."]
#[doc = ""]
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/RTCTrackEvent)"]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `RtcTrackEvent`*"]
pub type RtcTrackEvent;
#[cfg(feature = "RtcRtpReceiver")]
# [wasm_bindgen (structural , method , getter , js_class = "RTCTrackEvent" , js_name = receiver)]
#[doc = "Getter for the `receiver` field of this object."]
#[doc = ""]
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/RTCTrackEvent/receiver)"]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `RtcRtpReceiver`, `RtcTrackEvent`*"]
pub fn receiver(this: &RtcTrackEvent) -> RtcRtpReceiver;
#[cfg(feature = "MediaStreamTrack")]
# [wasm_bindgen (structural , method , getter , js_class = "RTCTrackEvent" , 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/RTCTrackEvent/track)"]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `MediaStreamTrack`, `RtcTrackEvent`*"]
pub fn track(this: &RtcTrackEvent) -> MediaStreamTrack;
# [wasm_bindgen (structural , method , getter , js_class = "RTCTrackEvent" , js_name = streams)]
#[doc = "Getter for the `streams` field of this object."]
#[doc = ""]
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/RTCTrackEvent/streams)"]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `RtcTrackEvent`*"]
pub fn streams(this: &RtcTrackEvent) -> ::js_sys::Array;
#[cfg(feature = "RtcRtpTransceiver")]
# [wasm_bindgen (structural , method , getter , js_class = "RTCTrackEvent" , js_name = transceiver)]
#[doc = "Getter for the `transceiver` field of this object."]
#[doc = ""]
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/RTCTrackEvent/transceiver)"]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `RtcRtpTransceiver`, `RtcTrackEvent`*"]
pub fn transceiver(this: &RtcTrackEvent) -> RtcRtpTransceiver;
#[cfg(feature = "RtcTrackEventInit")]
#[wasm_bindgen(catch, constructor, js_class = "RTCTrackEvent")]
#[doc = "The `new RtcTrackEvent(..)` constructor, creating a new instance of `RtcTrackEvent`."]
#[doc = ""]
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/RTCTrackEvent/RTCTrackEvent)"]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `RtcTrackEvent`, `RtcTrackEventInit`*"]
pub fn new(type_: &str, event_init_dict: &RtcTrackEventInit) -> Result<RtcTrackEvent, JsValue>;
}
|