pub struct BinaryTag {
pub key: String,
pub payload: Vec<u8>,
pub ordinal: u64,
}Expand description
A binary tag payload to write (e.g. an opaque ID3 PRIV frame body). key is
the format-private identifier (ID3 frame id, APPLICATION/CUESHEET,
----:<mean>:<name>); payload is the post-header frame/block body.
Fields§
§key: String§payload: Vec<u8>§ordinal: u64Trait Implementations§
impl Eq for BinaryTag
impl StructuralPartialEq for BinaryTag
Auto Trait Implementations§
impl Freeze for BinaryTag
impl RefUnwindSafe for BinaryTag
impl Send for BinaryTag
impl Sync for BinaryTag
impl Unpin for BinaryTag
impl UnsafeUnpin for BinaryTag
impl UnwindSafe for BinaryTag
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