Add Id3v2Tag::genre

This commit is contained in:
Serial 2021-12-20 09:54:01 -05:00
parent 555a28d5b2
commit 2273e4608f

View file

@ -97,12 +97,12 @@ pub struct Id3v2Tag {
frames: Vec<Frame>,
}
// TODO: Genre
impl_accessor!(
title, "TIT2";
artist, "TPE1";
album, "TALB";
album_artist, "TPE2";
genre, "TCON";
);
impl Default for Id3v2Tag {