pub trait ID3Tag: Tag {
    const ID3_TAG: &'static str;
    fn parse_id3(input: &[u8]) -> Result<Self, Error> { ... }
fn write_id3(&self, writer: &mut impl Write) -> Result<usize, Error> { ... } }

Associated Constants

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

Provided methods

Implementors