Enum midi_msg::TimeCodeCueingMsg
source · pub enum TimeCodeCueingMsg {
SystemStop,
PunchIn {
event_number: u16,
},
PunchOut {
event_number: u16,
},
EventStart {
event_number: u16,
additional_information: Vec<MidiMsg>,
},
EventStop {
event_number: u16,
additional_information: Vec<MidiMsg>,
},
Cue {
event_number: u16,
additional_information: Vec<MidiMsg>,
},
EventName {
event_number: u16,
name: BString,
},
}Expand description
Realtime Time Code Cueing. Used by UniversalRealTimeMsg::TimeCodeCueing.
As defined in the MIDI Time Code spec (MMA0001 / RP004 / RP008)
Variants§
Trait Implementations§
source§impl Clone for TimeCodeCueingMsg
impl Clone for TimeCodeCueingMsg
source§fn clone(&self) -> TimeCodeCueingMsg
fn clone(&self) -> TimeCodeCueingMsg
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for TimeCodeCueingMsg
impl Debug for TimeCodeCueingMsg
source§impl PartialEq for TimeCodeCueingMsg
impl PartialEq for TimeCodeCueingMsg
source§fn eq(&self, other: &TimeCodeCueingMsg) -> bool
fn eq(&self, other: &TimeCodeCueingMsg) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for TimeCodeCueingMsg
Auto Trait Implementations§
impl RefUnwindSafe for TimeCodeCueingMsg
impl Send for TimeCodeCueingMsg
impl Sync for TimeCodeCueingMsg
impl Unpin for TimeCodeCueingMsg
impl UnwindSafe for TimeCodeCueingMsg
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