Enum bmidi::EventType [] [src]

pub enum EventType {
    Key {
        typ: KeyEventType,
        note: Note,
        velocity: Byte,
    },
    ControlChange {
        controller: Byte,
        value: Byte,
    },
    PatchChange {
        program: Byte,
    },
    ChannelAftertouch {
        channel: Byte,
    },
    PitchWheelChange {
        value: u16,
    },
    Meta {
        typ: Byte,
        data: Vec<u8>,
    },
}

Variants

Fields of Key

Fields of ControlChange

Fields of PatchChange

Fields of ChannelAftertouch

Fields of PitchWheelChange

Fields of Meta

Trait Implementations

impl Debug for EventType
[src]

Formats the value using the given formatter.

impl Clone for EventType
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more