pub struct MidiOut {
pub data: [u8; 8],
pub len: u8,
pub dest: MidiPort,
}Expand description
A MIDI message tagged with destination port(s).
Fields§
§data: [u8; 8]Raw MIDI bytes (fits MIDI 1.0 and future MIDI 2.0 UMP).
len: u8Number of valid bytes in data.
dest: MidiPortDestination ports (bitmask).
Implementations§
Trait Implementations§
impl Eq for MidiOut
impl StructuralPartialEq for MidiOut
Auto Trait Implementations§
impl Freeze for MidiOut
impl RefUnwindSafe for MidiOut
impl Send for MidiOut
impl Sync for MidiOut
impl Unpin for MidiOut
impl UnsafeUnpin for MidiOut
impl UnwindSafe for MidiOut
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