Enum midi_msg::SystemCommonMsg [−][src]
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.
Request that the oscillators of an analog synth be tuned.
Trait Implementations
impl Clone for SystemCommonMsg[src]
fn clone(&self) -> SystemCommonMsg[src]
pub fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Copy for SystemCommonMsg[src]
impl Debug for SystemCommonMsg[src]
impl PartialEq<SystemCommonMsg> for SystemCommonMsg[src]
fn eq(&self, other: &SystemCommonMsg) -> bool[src]
fn ne(&self, other: &SystemCommonMsg) -> bool[src]
impl StructuralPartialEq for SystemCommonMsg[src]
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
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,