use std::fmt::Display;
#[derive(Debug)]
#[allow(dead_code)]
#[derive(Default)]
pub struct ID3v1 {
header: Vec<u8>,
title: Vec<u8>,
artist: Vec<u8>,
album: Vec<u8>,
year: Vec<u8>,
comment: Vec<u8>,
genre: u8,
}
impl ID3v1 {
pub fn new(
header: Vec<u8>,
title: Vec<u8>,
artist: Vec<u8>,
album: Vec<u8>,
year: Vec<u8>,
comment: Vec<u8>,
genre: u8,
) -> Self {
ID3v1 {
header,
title,
artist,
album,
year,
comment,
genre,
}
}
}
impl Display for ID3v1 {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
write!(f, "
ID3v1 {{
header: {:X?},
title: {:X?},
artist: {:X?},
album: {:X?},
year: {:X?},
comment: {:X?},
genre: {}
}}", self.header, self.title, self.artist, self.album, self.year, self.comment, self.genre)
}
}