[−][src]Enum libatm::midi_event::MIDIStatus
MIDI message status
Each MIDI event (message) has a status, which sets the message type and thus the meaning of the associated message data. Technically the status bits also include the channel number, but this library currently only supports single track, single channel MIDI files (and thus defaults to channel 0). For a detailed description of each status type, see Appendix 1.1 of the document here: https://www.cs.cmu.edu/~music/cmsip/readings/Standard-MIDI-file-format-updated.pdf.
Variants
Assume status bytes of previous MIDI channel message
Note released
Note pressed
Pressure on key after pressed down
Controller value change
Change program (patch) number
Greatest pressure on key after pressed down
Chainge pitch wheel
Trait Implementations
impl Clone for MIDIStatus
[src]
fn clone(&self) -> MIDIStatus
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Copy for MIDIStatus
[src]
impl Debug for MIDIStatus
[src]
Auto Trait Implementations
impl RefUnwindSafe for MIDIStatus
impl Send for MIDIStatus
impl Sync for MIDIStatus
impl Unpin for MIDIStatus
impl UnwindSafe for MIDIStatus
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,