pub struct EmbeddedBinaryTag {
pub key: String,
pub payload: Vec<u8>,
}Expand description
A binary tag frame extracted at scan time: the format-private identifier
(key — an ID3 4-char frame id, a FLAC APPLICATION/CUESHEET, or an MP4
----:<mean>:<name>) and the raw post-header body (payload). Unlike
BinaryTagInput, this owns the bytes (scan ingests them into the DB).
Fields§
§key: String§payload: Vec<u8>Trait Implementations§
Source§impl Clone for EmbeddedBinaryTag
impl Clone for EmbeddedBinaryTag
Source§fn clone(&self) -> EmbeddedBinaryTag
fn clone(&self) -> EmbeddedBinaryTag
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for EmbeddedBinaryTag
impl Debug for EmbeddedBinaryTag
impl Eq for EmbeddedBinaryTag
Source§impl PartialEq for EmbeddedBinaryTag
impl PartialEq for EmbeddedBinaryTag
Source§fn eq(&self, other: &EmbeddedBinaryTag) -> bool
fn eq(&self, other: &EmbeddedBinaryTag) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for EmbeddedBinaryTag
Auto Trait Implementations§
impl Freeze for EmbeddedBinaryTag
impl RefUnwindSafe for EmbeddedBinaryTag
impl Send for EmbeddedBinaryTag
impl Sync for EmbeddedBinaryTag
impl Unpin for EmbeddedBinaryTag
impl UnsafeUnpin for EmbeddedBinaryTag
impl UnwindSafe for EmbeddedBinaryTag
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