pub trait FLACTag: EnvelopedTag {
    const FLAC_COMMENT: &'static str;
    fn parse_flac(input: &[u8]) -> Result<Self, Error> { ... }
fn write_flac(&self, writer: &mut impl Write) -> Result<usize, Error> { ... } }

Associated Constants

Name of the VORBIS_COMMENT that this data is stored in.

Provided methods

Implementors