Enum midi_msg::TimeCodeCueingSetupMsg[][src]

pub enum TimeCodeCueingSetupMsg {
    TimeCodeOffset {
        time_code: HighResTimeCode,
    },
    EnableEventList,
    DisableEventList,
    ClearEventList,
    SystemStop,
    EventListRequest {
        time_code: HighResTimeCode,
    },
    PunchIn {
        time_code: HighResTimeCode,
        event_number: u16,
    },
    PunchOut {
        time_code: HighResTimeCode,
        event_number: u16,
    },
    DeletePunchIn {
        time_code: HighResTimeCode,
        event_number: u16,
    },
    DeletePunchOut {
        time_code: HighResTimeCode,
        event_number: u16,
    },
    EventStart {
        time_code: HighResTimeCode,
        event_number: u16,
        additional_information: Vec<MidiMsg>,
    },
    EventStop {
        time_code: HighResTimeCode,
        event_number: u16,
        additional_information: Vec<MidiMsg>,
    },
    DeleteEventStart {
        time_code: HighResTimeCode,
        event_number: u16,
    },
    DeleteEventStop {
        time_code: HighResTimeCode,
        event_number: u16,
    },
    Cue {
        time_code: HighResTimeCode,
        event_number: u16,
        additional_information: Vec<MidiMsg>,
    },
    DeleteCue {
        time_code: HighResTimeCode,
        event_number: u16,
    },
    EventName {
        time_code: HighResTimeCode,
        event_number: u16,
        name: AsciiString,
    },
}

Non-realtime Time Code Cueing. Used by UniversalNonRealTimeMsg::TimeCodeCueingSetup.

As defined in the MIDI Time Code spec (MMA0001 / RP004 / RP008)

Variants

TimeCodeOffset

Fields of TimeCodeOffset

time_code: HighResTimeCode
EnableEventList
DisableEventList
ClearEventList
SystemStop
EventListRequest

Fields of EventListRequest

time_code: HighResTimeCode
PunchIn

Fields of PunchIn

time_code: HighResTimeCodeevent_number: u16
PunchOut

Fields of PunchOut

time_code: HighResTimeCodeevent_number: u16
DeletePunchIn

Fields of DeletePunchIn

time_code: HighResTimeCodeevent_number: u16
DeletePunchOut

Fields of DeletePunchOut

time_code: HighResTimeCodeevent_number: u16
EventStart

Fields of EventStart

time_code: HighResTimeCodeevent_number: u16additional_information: Vec<MidiMsg>
EventStop

Fields of EventStop

time_code: HighResTimeCodeevent_number: u16additional_information: Vec<MidiMsg>
DeleteEventStart

Fields of DeleteEventStart

time_code: HighResTimeCodeevent_number: u16
DeleteEventStop

Fields of DeleteEventStop

time_code: HighResTimeCodeevent_number: u16
Cue

Fields of Cue

time_code: HighResTimeCodeevent_number: u16additional_information: Vec<MidiMsg>
DeleteCue

Fields of DeleteCue

time_code: HighResTimeCodeevent_number: u16
EventName

Fields of EventName

time_code: HighResTimeCodeevent_number: u16name: AsciiString

Trait Implementations

impl Clone for TimeCodeCueingSetupMsg[src]

impl Debug for TimeCodeCueingSetupMsg[src]

impl PartialEq<TimeCodeCueingSetupMsg> for TimeCodeCueingSetupMsg[src]

impl StructuralPartialEq for TimeCodeCueingSetupMsg[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.