pub enum SysExType {
Manufacturer(ManufacturerId),
NonRealTime(u8, [u8; 2]),
RealTime(u8, [u8; 2]),
}
Expand description
The type of SysEx message
Variants§
Manufacturer(ManufacturerId)
Manufacturer ID.
NonRealTime(u8, [u8; 2])
Non RealTime Universal SysEx Device ID, [sub id 1, sub id 2]
RealTime(u8, [u8; 2])
Realtime Universal SysEx Device ID, [sub id 1, sub id 2]
Trait Implementations§
impl Eq for SysExType
impl StructuralPartialEq for SysExType
Auto Trait Implementations§
impl Freeze for SysExType
impl RefUnwindSafe for SysExType
impl Send for SysExType
impl Sync for SysExType
impl Unpin for SysExType
impl UnwindSafe for SysExType
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more