[][src]Enum libatm::midi_file::MIDIFormat

pub enum MIDIFormat {
    Format0,
    Format1,
    Format2,
}

MIDI file format

MIDI files have three different formats: 0, 1, and 2. Format 0 means the MIDI file has a single track chunk, whereas formats 1 and 2 indicate one or more track chunks. A longer discussion of these formats can be found in section 2.2 of the document here: https://www.cs.cmu.edu/~music/cmsip/readings/Standard-MIDI-file-format-updated.pdf.

Variants

Format0

Single track.

Format1

One or more simultaneous tracks.

Format2

One or more independent tracks.

Trait Implementations

impl Clone for MIDIFormat[src]

impl Copy for MIDIFormat[src]

impl Eq for MIDIFormat[src]

impl PartialEq<MIDIFormat> for MIDIFormat[src]

impl Debug for MIDIFormat[src]

impl Hash for MIDIFormat[src]

impl StructuralPartialEq for MIDIFormat[src]

impl StructuralEq for MIDIFormat[src]

Auto Trait Implementations

impl Send for MIDIFormat

impl Sync for MIDIFormat

impl Unpin for MIDIFormat

impl UnwindSafe for MIDIFormat

impl RefUnwindSafe for MIDIFormat

Blanket Implementations

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

impl<T> From<T> for 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.

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

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

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