Enum cue_sheet::parser::FileFormat [] [src]

pub enum FileFormat {
    Wave,
    Mp3,
    Aiff,
    Binary,
    Motorola,
}

Describes the file format of an audio file.

Variants

Also includes other lossless formats.

An MP3 audio file.

An AIFF audio file.

Little-endian binary raw data file.

Big-endian binary raw data file.

Trait Implementations

impl Clone for FileFormat
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for FileFormat
[src]

Formats the value using the given formatter.

impl Eq for FileFormat
[src]

impl PartialEq for FileFormat
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl FromStr for FileFormat
[src]

The associated error which can be returned from parsing.

Parses a string s to return a value of this type. Read more