[][src]Enum helgoboss_midi::MessageSuperType

pub enum MessageSuperType {
    ChannelVoice,
    ChannelMode,
    SystemCommon,
    SystemRealTime,
    SystemExclusive,
}

A more coarse-grained classification of MIDI messages than ShortMessageType.

Variants

ChannelVoice

Channel Voice messages are used to send musical performance information.

ChannelMode

Channel Mode messages affect the way a synthesizer responds to MIDI data.

SystemCommon

System Common messages are intended for all receivers in the system.

SystemRealTime

System Real Time messages are used for synchronization between clock-based MIDI components.

SystemExclusive

System Exclusive messages are used to transfer any number of data bytes in a format specified by the referenced manufacturer.

Implementations

impl MessageSuperType[src]

pub fn main_category(&self) -> MessageMainCategory[src]

Returns the corresponding main category.

Trait Implementations

impl Clone for MessageSuperType[src]

impl Copy for MessageSuperType[src]

impl Debug for MessageSuperType[src]

impl Eq for MessageSuperType[src]

impl Hash for MessageSuperType[src]

impl PartialEq<MessageSuperType> for MessageSuperType[src]

impl StructuralEq for MessageSuperType[src]

impl StructuralPartialEq for MessageSuperType[src]

Auto Trait Implementations

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.