midi/raw_message.rs
1// Copyright 2015 Sam Doshi (sam@metal-fish.co.uk)
2//
3// Licensed under the MIT License <LICENSE or http://opensource.org/licenses/MIT>.
4// This file may not be copied, modified, or distributed except according to those terms.
5
6use types::U7;
7
8#[derive(Debug, Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)]
9pub enum RawMessage {
10 Status(u8),
11 StatusData(u8, U7),
12 StatusDataData(u8, U7, U7),
13 /// Raw 8-bit data, useful for SysEx
14 Raw(u8)
15}
16