[][src]Struct metaflac::block::CueSheet

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

A structure representing a CUESHEET block.

Fields

catalog_num: String

Media catalog number.

num_leadin: u64

The number of lead-in samples.

is_cd: bool

True if the cuesheet corresponds to a compact disc.

tracks: Vec<CueSheetTrack>

One or more tracks.

Methods

impl CueSheet[src]

pub fn new() -> CueSheet[src]

Returns a new CueSheet for a CD with zero/empty values.

pub fn from_bytes(bytes: &[u8]) -> Result<CueSheet>[src]

Parses the bytes as a cuesheet block.

pub fn to_bytes(&self) -> Vec<u8>[src]

Returns a vector representation of the cuesheet block suitable for writing to a file.

Trait Implementations

impl Clone for CueSheet[src]

impl Eq for CueSheet[src]

impl PartialEq<CueSheet> for CueSheet[src]

impl Debug for CueSheet[src]

Auto Trait Implementations

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]