pub struct MidiMessage { /* private fields */ }
Expand description
Godot enum name: MIDIMessage
.
Implementations§
Source§impl MidiMessage
impl MidiMessage
Sourcepub const NONE: MidiMessage
pub const NONE: MidiMessage
Godot enumerator name: MIDI_MESSAGE_NONE
Sourcepub const NOTE_OFF: MidiMessage
pub const NOTE_OFF: MidiMessage
Godot enumerator name: MIDI_MESSAGE_NOTE_OFF
Sourcepub const NOTE_ON: MidiMessage
pub const NOTE_ON: MidiMessage
Godot enumerator name: MIDI_MESSAGE_NOTE_ON
Sourcepub const AFTERTOUCH: MidiMessage
pub const AFTERTOUCH: MidiMessage
Godot enumerator name: MIDI_MESSAGE_AFTERTOUCH
Sourcepub const CONTROL_CHANGE: MidiMessage
pub const CONTROL_CHANGE: MidiMessage
Godot enumerator name: MIDI_MESSAGE_CONTROL_CHANGE
Sourcepub const PROGRAM_CHANGE: MidiMessage
pub const PROGRAM_CHANGE: MidiMessage
Godot enumerator name: MIDI_MESSAGE_PROGRAM_CHANGE
Sourcepub const CHANNEL_PRESSURE: MidiMessage
pub const CHANNEL_PRESSURE: MidiMessage
Godot enumerator name: MIDI_MESSAGE_CHANNEL_PRESSURE
Sourcepub const PITCH_BEND: MidiMessage
pub const PITCH_BEND: MidiMessage
Godot enumerator name: MIDI_MESSAGE_PITCH_BEND
Sourcepub const SYSTEM_EXCLUSIVE: MidiMessage
pub const SYSTEM_EXCLUSIVE: MidiMessage
Godot enumerator name: MIDI_MESSAGE_SYSTEM_EXCLUSIVE
Sourcepub const QUARTER_FRAME: MidiMessage
pub const QUARTER_FRAME: MidiMessage
Godot enumerator name: MIDI_MESSAGE_QUARTER_FRAME
Sourcepub const SONG_POSITION_POINTER: MidiMessage
pub const SONG_POSITION_POINTER: MidiMessage
Godot enumerator name: MIDI_MESSAGE_SONG_POSITION_POINTER
Sourcepub const SONG_SELECT: MidiMessage
pub const SONG_SELECT: MidiMessage
Godot enumerator name: MIDI_MESSAGE_SONG_SELECT
Sourcepub const TUNE_REQUEST: MidiMessage
pub const TUNE_REQUEST: MidiMessage
Godot enumerator name: MIDI_MESSAGE_TUNE_REQUEST
Sourcepub const TIMING_CLOCK: MidiMessage
pub const TIMING_CLOCK: MidiMessage
Godot enumerator name: MIDI_MESSAGE_TIMING_CLOCK
Sourcepub const START: MidiMessage
pub const START: MidiMessage
Godot enumerator name: MIDI_MESSAGE_START
Sourcepub const CONTINUE: MidiMessage
pub const CONTINUE: MidiMessage
Godot enumerator name: MIDI_MESSAGE_CONTINUE
Sourcepub const STOP: MidiMessage
pub const STOP: MidiMessage
Godot enumerator name: MIDI_MESSAGE_STOP
Sourcepub const ACTIVE_SENSING: MidiMessage
pub const ACTIVE_SENSING: MidiMessage
Godot enumerator name: MIDI_MESSAGE_ACTIVE_SENSING
Sourcepub const SYSTEM_RESET: MidiMessage
pub const SYSTEM_RESET: MidiMessage
Godot enumerator name: MIDI_MESSAGE_SYSTEM_RESET
Trait Implementations§
Source§impl Clone for MidiMessage
impl Clone for MidiMessage
Source§fn clone(&self) -> MidiMessage
fn clone(&self) -> MidiMessage
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for MidiMessage
impl Debug for MidiMessage
Source§impl EngineEnum for MidiMessage
impl EngineEnum for MidiMessage
Source§impl FromGodot for MidiMessage
impl FromGodot for MidiMessage
Source§fn try_from_godot(via: Self::Via) -> Result<Self, ConvertError>
fn try_from_godot(via: Self::Via) -> Result<Self, ConvertError>
Err
on failure.Source§fn from_godot(via: Self::Via) -> Self
fn from_godot(via: Self::Via) -> Self
Source§fn try_from_variant(variant: &Variant) -> Result<Self, ConvertError>
fn try_from_variant(variant: &Variant) -> Result<Self, ConvertError>
Variant
], returning Err
on failure.Source§fn from_variant(variant: &Variant) -> Self
fn from_variant(variant: &Variant) -> Self
Variant
]. Read more