Struct flac::metadata::CueSheet [] [src]

pub struct CueSheet {
    pub media_catalog_number: String,
    pub lead_in: u64,
    pub is_cd: bool,
    pub tracks: Vec<CueSheetTrack>,
}

Stores cue information.

Generally for storing information from Compact Disk Digital Audio, but can be used as a cueing mechanism for playback.

Fields

media_catalog_number: String

Media catalog number.

lead_in: u64

Number of lead-in samples.

is_cd: bool

Whether or not this CueSheet corresponds to a Compact Disc.

tracks: Vec<CueSheetTrack>

One or more tracks.

Trait Implementations

impl Eq for CueSheet
[src]

impl PartialEq for CueSheet
[src]

fn eq(&self, __arg_0: &CueSheet) -> bool

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

fn ne(&self, __arg_0: &CueSheet) -> bool

This method tests for !=.

impl Debug for CueSheet
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.