pub struct Id3v2Tag {
pub version: (u8, u8),
pub frames: Vec<Id3v2Frame>,
}Expand description
A parsed ID3v2 tag.
Fields§
§version: (u8, u8)ID3v2 version as (major, revision), e.g. (3, 0) or (4, 0).
frames: Vec<Id3v2Frame>Parsed frames.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Id3v2Tag
impl RefUnwindSafe for Id3v2Tag
impl Send for Id3v2Tag
impl Sync for Id3v2Tag
impl Unpin for Id3v2Tag
impl UnsafeUnpin for Id3v2Tag
impl UnwindSafe for Id3v2Tag
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more