pub struct Id3v2Frame {
pub id: String,
pub data: Vec<u8>,
}Expand description
A single ID3v2 frame.
Fields§
§id: StringFour-character frame identifier (e.g. “TIT2”).
data: Vec<u8>Raw frame payload (excluding the 10-byte frame header).
Trait Implementations§
Source§impl Clone for Id3v2Frame
impl Clone for Id3v2Frame
Source§fn clone(&self) -> Id3v2Frame
fn clone(&self) -> Id3v2Frame
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for Id3v2Frame
impl RefUnwindSafe for Id3v2Frame
impl Send for Id3v2Frame
impl Sync for Id3v2Frame
impl Unpin for Id3v2Frame
impl UnsafeUnpin for Id3v2Frame
impl UnwindSafe for Id3v2Frame
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