pub trait MidiMessageLike {
    fn is_midi(&self) -> bool;
    fn bytes(&self) -> Option<&[u8]>;
}
Expand description

Represents an “Event” type for audio processors. Due to how events are forwarded to processors, the list of events received might contain non-MIDI events.

Required Methods

Implementations on Foreign Types

Implementors