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.

Number of lead-in samples.

Whether or not this CueSheet corresponds to a Compact Disc.

One or more tracks.

Methods

impl CueSheet
[src]

Trait Implementations

impl Debug for CueSheet
[src]

Formats the value using the given formatter.

impl PartialEq for CueSheet
[src]

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

This method tests for !=.

impl Eq for CueSheet
[src]