Enum midi_msg::SystemCommonMsg
source · [−]pub enum SystemCommonMsg {
TimeCodeQuarterFrame1(TimeCode),
TimeCodeQuarterFrame2(TimeCode),
TimeCodeQuarterFrame3(TimeCode),
TimeCodeQuarterFrame4(TimeCode),
TimeCodeQuarterFrame5(TimeCode),
TimeCodeQuarterFrame6(TimeCode),
TimeCodeQuarterFrame7(TimeCode),
TimeCodeQuarterFrame8(TimeCode),
SongPosition(u16),
SongSelect(u8),
TuneRequest,
}
Expand description
A fairly limited set of messages, generally for device synchronization.
Used in MidiMsg
.
Variants
TimeCodeQuarterFrame1(TimeCode)
The first of 8 “quarter frame” messages, which are meant to be sent 4 per “frame”.
These messages function similarly to SystemRealTimeMsg::TimingClock
but additionally indicate the specific point in the playback that they refer to, as well
as the frame rate. This means that a full TimeCode
is send over the course of two frames.
They are sent in reverse order if time is playing in reverse.
TimeCodeQuarterFrame2(TimeCode)
TimeCodeQuarterFrame3(TimeCode)
TimeCodeQuarterFrame4(TimeCode)
TimeCodeQuarterFrame5(TimeCode)
TimeCodeQuarterFrame6(TimeCode)
TimeCodeQuarterFrame7(TimeCode)
TimeCodeQuarterFrame8(TimeCode)
SongPosition(u16)
Indicate the song position, in MIDI beats, where 1 MIDI beat = 6 MIDI clocks. 0-16383
SongSelect(u8)
Select a song numbered 0-127.
TuneRequest
Request that the oscillators of an analog synth be tuned.
Trait Implementations
sourceimpl Clone for SystemCommonMsg
impl Clone for SystemCommonMsg
sourcefn clone(&self) -> SystemCommonMsg
fn clone(&self) -> SystemCommonMsg
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for SystemCommonMsg
impl Debug for SystemCommonMsg
sourceimpl PartialEq<SystemCommonMsg> for SystemCommonMsg
impl PartialEq<SystemCommonMsg> for SystemCommonMsg
sourcefn eq(&self, other: &SystemCommonMsg) -> bool
fn eq(&self, other: &SystemCommonMsg) -> bool
impl Copy for SystemCommonMsg
impl Eq for SystemCommonMsg
impl StructuralEq for SystemCommonMsg
impl StructuralPartialEq for SystemCommonMsg
Auto Trait Implementations
impl RefUnwindSafe for SystemCommonMsg
impl Send for SystemCommonMsg
impl Sync for SystemCommonMsg
impl Unpin for SystemCommonMsg
impl UnwindSafe for SystemCommonMsg
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more