pub trait FromSong: SongSize {
// Required method
fn from_song(buf: &[u8]) -> Result<Self, FromSongError>
where Self: Sized;
}pub trait FromSong: SongSize {
// Required method
fn from_song(buf: &[u8]) -> Result<Self, FromSongError>
where Self: Sized;
}