1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
pub enum CCTypes { } pub struct MSBLSBControl { msb: u8, lsb: u8, value: f64, } impl MSBLSBControl { } pub enum CCChangeType { MSB(u8), LSB(u8), Value(f32), }