Struct flac::metadata::CueSheetTrack [] [src]

pub struct CueSheetTrack {
    pub offset: u64,
    pub number: u8,
    pub isrc: String,
    pub is_audio: bool,
    pub is_pre_emphasis: bool,
    pub indices: Vec<CueSheetTrackIndex>,
}

Track information inside a cue sheet.

Fields

Track offset, in samples, relative to the beginning of the FLAC audio stream.

Track number.

Twelve digit alphanumeric code.

Whether the cue sheet track is audio.

Whether the cue sheet track is pre-emphasis.

For all tracks except the lead-out track.

Methods

impl CueSheetTrack
[src]

Trait Implementations

impl Debug for CueSheetTrack
[src]

Formats the value using the given formatter.

impl PartialEq for CueSheetTrack
[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 CueSheetTrack
[src]