Struct flac::Metadata [] [src]

pub struct Metadata {
    pub is_last: bool,
    pub length: u32,
    pub data: Data,
}

Data associated with a single metadata block.

Fields

is_last: bool

Marks whether the current metadata block is the last.

length: u32

The length, in bytes, of the block being parsed. This does not include the metadata block header.

data: Data

Block data containing one of the eight different types of metadata.

Trait Implementations

impl Debug for Metadata
[src]

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

Formats the value using the given formatter.