[−][src]Enum libatm::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
RunningStatusAssume status bytes of previous MIDI channel message
NoteOffNote released
NoteOnNote pressed
PolyphonicAftertouchPressure on key after pressed down
ControlChangeController value change
ProgramChangeChange program (patch) number
AftertouchGreatest pressure on key after pressed down
PitchWheelChangeChainge 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]
Performs copy-assignment from source. Read more
impl Copy for MIDIStatus[src]
impl Debug for MIDIStatus[src]
Auto Trait Implementations
impl Send for MIDIStatus
impl Unpin for MIDIStatus
impl Sync for MIDIStatus
impl UnwindSafe for MIDIStatus
impl RefUnwindSafe for MIDIStatus
Blanket Implementations
impl<T> From<T> for T[src]
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> Into<U> for T where
U: From<T>, [src]
U: From<T>,
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>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
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> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,