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
|
#![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 = MIDIPort , typescript_type = "MIDIPort")]
#[derive(Debug, Clone, PartialEq, Eq)]
#[doc = "The `MidiPort` class."]
#[doc = ""]
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/MIDIPort)"]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `MidiPort`*"]
pub type MidiPort;
# [wasm_bindgen (structural , method , getter , js_class = "MIDIPort" , 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/MIDIPort/id)"]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `MidiPort`*"]
pub fn id(this: &MidiPort) -> String;
# [wasm_bindgen (structural , method , getter , js_class = "MIDIPort" , js_name = manufacturer)]
#[doc = "Getter for the `manufacturer` field of this object."]
#[doc = ""]
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/MIDIPort/manufacturer)"]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `MidiPort`*"]
pub fn manufacturer(this: &MidiPort) -> Option<String>;
# [wasm_bindgen (structural , method , getter , js_class = "MIDIPort" , js_name = name)]
#[doc = "Getter for the `name` field of this object."]
#[doc = ""]
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/MIDIPort/name)"]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `MidiPort`*"]
pub fn name(this: &MidiPort) -> Option<String>;
# [wasm_bindgen (structural , method , getter , js_class = "MIDIPort" , js_name = version)]
#[doc = "Getter for the `version` field of this object."]
#[doc = ""]
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/MIDIPort/version)"]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `MidiPort`*"]
pub fn version(this: &MidiPort) -> Option<String>;
#[cfg(feature = "MidiPortType")]
# [wasm_bindgen (structural , method , getter , js_class = "MIDIPort" , js_name = type)]
#[doc = "Getter for the `type` field of this object."]
#[doc = ""]
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/MIDIPort/type)"]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `MidiPort`, `MidiPortType`*"]
pub fn type_(this: &MidiPort) -> MidiPortType;
#[cfg(feature = "MidiPortDeviceState")]
# [wasm_bindgen (structural , method , getter , js_class = "MIDIPort" , js_name = state)]
#[doc = "Getter for the `state` field of this object."]
#[doc = ""]
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/MIDIPort/state)"]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `MidiPort`, `MidiPortDeviceState`*"]
pub fn state(this: &MidiPort) -> MidiPortDeviceState;
#[cfg(feature = "MidiPortConnectionState")]
# [wasm_bindgen (structural , method , getter , js_class = "MIDIPort" , js_name = connection)]
#[doc = "Getter for the `connection` field of this object."]
#[doc = ""]
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/MIDIPort/connection)"]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `MidiPort`, `MidiPortConnectionState`*"]
pub fn connection(this: &MidiPort) -> MidiPortConnectionState;
# [wasm_bindgen (structural , method , getter , js_class = "MIDIPort" , js_name = onstatechange)]
#[doc = "Getter for the `onstatechange` field of this object."]
#[doc = ""]
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/MIDIPort/onstatechange)"]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `MidiPort`*"]
pub fn onstatechange(this: &MidiPort) -> Option<::js_sys::Function>;
# [wasm_bindgen (structural , method , setter , js_class = "MIDIPort" , js_name = onstatechange)]
#[doc = "Setter for the `onstatechange` field of this object."]
#[doc = ""]
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/MIDIPort/onstatechange)"]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `MidiPort`*"]
pub fn set_onstatechange(this: &MidiPort, value: Option<&::js_sys::Function>);
# [wasm_bindgen (method , structural , js_class = "MIDIPort" , js_name = close)]
#[doc = "The `close()` method."]
#[doc = ""]
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/MIDIPort/close)"]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `MidiPort`*"]
pub fn close(this: &MidiPort) -> ::js_sys::Promise;
# [wasm_bindgen (method , structural , js_class = "MIDIPort" , js_name = open)]
#[doc = "The `open()` method."]
#[doc = ""]
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/MIDIPort/open)"]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `MidiPort`*"]
pub fn open(this: &MidiPort) -> ::js_sys::Promise;
}
|