pub trait ID3Tag: Tag {
    const ID3_TAG: &'static str = Self::NAME;

    // Provided methods
    fn parse_id3(input: &[u8]) -> Result<Self, Error> { ... }
    fn write_id3(&self, writer: &mut impl Write) -> Result<usize, Error> { ... }
}

Provided Associated Constants§

source

const ID3_TAG: &'static str = Self::NAME

Name of the ID3 tag that this data is stored in.

Provided Methods§

source

fn parse_id3(input: &[u8]) -> Result<Self, Error>

source

fn write_id3(&self, writer: &mut impl Write) -> Result<usize, Error>

Object Safety§

This trait is not object safe.

Implementors§