Enum wmidi::MidiMessage[][src]

pub enum MidiMessage<'a> {
    NoteOff(ChannelNoteVelocity),
    NoteOn(ChannelNoteVelocity),
    PolyphonicKeyPressure(ChannelNoteVelocity),
    ControlChange(ChannelControlFunctionControlValue),
    ProgramChange(ChannelProgramNumber),
    ChannelPressure(ChannelVelocity),
    PitchBendChange(ChannelPitchBend),
    SysEx(&'a [U7]),
    OwnedSysEx(Vec<U7>),
    MidiTimeCode(U7),
    SongPositionPointer(SongPosition),
    SongSelect(Song),
    Reserved(u8),
    TuneRequest,
    TimingClock,
    Start,
    Continue,
    Stop,
    ActiveSensing,
    Reset,
}

Holds information based on the Midi 1.0 spec.

Variants

NoteOff(ChannelNoteVelocity)

This message is sent when a note is released (ended).

NoteOn(ChannelNoteVelocity)

This message is sent when a note is depressed (start).

PolyphonicKeyPressure(ChannelNoteVelocity)

This message is most often sent by pressing down on the key after it "bottoms out".

This message is sent when a controller value changes. Controllers include devices such as pedals and levers.

Controller numbers 120-127 are reserved as "Channel Mode Messages".

ProgramChange(ChannelProgramNumber)

This message is sent when the patch number changes.

ChannelPressure(ChannelVelocity)

This message is most often sent by pressing down on the key after it "bottoms out". This message is different from polyphonic after-touch. Use this message to send the single greatest pressure value (of all the current depressed keys).

PitchBendChange(ChannelPitchBend)

This message is sent to indicate a change in the pitch bender (wheel or level, typically). The pitch bender is measured by a fourteen bit value. Center is 8192.

SysEx(&'a [U7])

This message type allows manufacturers to create their own messages (such as bulk dumps, patch parameters, and other non-spec data) and provides a mechanism for creating additional MIDI Specification messages.

In the data held by the SysEx message, the Manufacturer's ID code (assigned by MMA or AMEI) is either 1 byte or 3 bytes. Two of the 1 Byte IDs are reserved for extensions called Universal Exclusive Messages, which are not manufacturer-specific. If a device recognizes the ID code as its own (or as a supported Universal message) it will listen to the rest of the message. Otherwise the message will be ignored.

OwnedSysEx(Vec<U7>)

This message type allows manufacturers to create their own messages (such as bulk dumps, patch parameters, and other non-spec data) and provides a mechanism for creating additional MIDI Specification messages.

In the data held by the SysEx message, the Manufacturer's ID code (assigned by MMA or AMEI) is either 1 byte or 3 bytes. Two of the 1 Byte IDs are reserved for extensions called Universal Exclusive Messages, which are not manufacturer-specific. If a device recognizes the ID code as its own (or as a supported Universal message) it will listen to the rest of the message. Otherwise the message will be ignored.

MidiTimeCode(U7)

MIDI Time Code Quarter Frame.

The data is in the format 0nnndddd where nnn is the Message Type and dddd is the Value.

TODO: Interpret data instead of providing the raw format.

SongPositionPointer(SongPosition)

This is an internal 14 bit value that holds the number of MIDI beats (1 beat = six MIDI clocks) since the start of the song.

SongSelect(Song)

The Song Select specifies which sequence or song is to be played.

Reserved(u8)

The u8 data holds the status byte.

TuneRequest

Upon receiving a Tune Request, all analog synthesizers should tune their oscillators.

TimingClock

Timing Clock. Sent 24 times per quarter note when synchronization is required.

Start

Start the current sequence playing. (This message will be followed with Timing Clocks).

Continue

Continue at the point the sequence was Stopped.

Stop

Stop the current sequence.

ActiveSensing

This message is intended to be sent repeatedly to tell the receiver that a connection is alive. Use of this message is optional. When initially received, the receiver will expect to receive another Active Sensing message each 300ms (max), and if it idoes not, then it will assume that the connection has been terminated. At termination, the receiver will turn off all voices and return to normal (non-active sensing) operation.

Reset

Reset all receivers in the system to power-up status. This should be used sparingly, preferably under manual control. In particular, it should not be sent on power-up.

Implementations

impl<'a> MidiMessage<'a>[src]

pub fn from_bytes(bytes: &'a [u8]) -> Result<Self, Error>[src]

👎 Deprecated since 2.0.0:

Use MidiMessage::try_from instead.

Construct a midi message from bytes. Use MidiMessage::try_from(bytes) instead.

pub fn copy_to_slice(&self, slice: &mut [u8]) -> Result<usize, ToSliceError>[src]

Copies the message as bytes to slice. If slice does not have enough capacity to fit the message, then an error is returned. On success, the number of bytes written will be returned. This should be the same number obtained from self.bytes_size().

pub fn drop_unowned_sysex(self) -> Option<MidiMessage<'static>>[src]

Return Some(midi_message) if self is not a SysEx message, or None if it is. This expands the lifetime of the MidiMessage from 'a to 'static.

pub fn to_owned(&self) -> MidiMessage<'static>

Notable traits for MidiMessage<'a>

impl<'a> Read for MidiMessage<'a>
[src]

Take ownership of the SysEx data. This expands the lifetime of the message to 'static. If 'static lifetime is needed but SysEx messages can be dropped, consider using self.drop_unowned_sysex().

pub fn bytes_size(&self) -> usize[src]

The number of bytes the MIDI message takes when converted to bytes.

pub fn wire_size(&self) -> usize[src]

👎 Deprecated since 3.1.0:

Function has been renamed to MidiMessage::bytes_size().

The number of bytes the MIDI message takes when encoded with the std::io::Read trait.

pub fn channel(&self) -> Option<Channel>[src]

The channel associated with the MIDI message, if applicable for the message type.

Trait Implementations

impl<'a> Clone for MidiMessage<'a>[src]

impl<'a> Debug for MidiMessage<'a>[src]

impl<'a> Eq for MidiMessage<'a>[src]

impl<'a> PartialEq<MidiMessage<'a>> for MidiMessage<'a>[src]

impl<'a> Read for MidiMessage<'a>[src]

impl<'a> StructuralEq for MidiMessage<'a>[src]

impl<'a> StructuralPartialEq for MidiMessage<'a>[src]

impl<'a> TryFrom<&'a [u8]> for MidiMessage<'a>[src]

type Error = Error

The type returned in the event of a conversion error.

fn try_from(bytes: &'a [u8]) -> Result<Self, Self::Error>[src]

Construct a midi message from bytes.

Auto Trait Implementations

impl<'a> RefUnwindSafe for MidiMessage<'a>[src]

impl<'a> Send for MidiMessage<'a>[src]

impl<'a> Sync for MidiMessage<'a>[src]

impl<'a> Unpin for MidiMessage<'a>[src]

impl<'a> UnwindSafe for MidiMessage<'a>[src]

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.