pub struct VidAssoc {
    pub version: Version,
    pub data: Vec<u8>,
}
Expand description

Represents the Serato VidAssoc tag.

Note: This tag has not been reverse-engineered yet. Judging from the name it contains “Video Association” data.

Example

use triseratops::tag::{VidAssoc, format::flac::FLACTag};

// First, read the tag data from the FLAC VORBIS_COMMENT (the tag name can be accessed using the
// VidAssoc::FLAC_TAG), then parse the data like this:
fn parse(data: &[u8]) {
    let content = VidAssoc::parse_flac(data).expect("Failed to parse data!");
    println!("{:?}", content);
}

Fields

version: Version

The VidAssoc version.

data: Vec<u8>

The data (not reverse-engineered yet)

Trait Implementations

Formats the value using the given formatter. Read more

Name of the VORBIS_COMMENT that this data is stored in.

The mean part of the freeform MP4_ATOM that this data is stored in.

The mean part of the freeform MP4_ATOM that this data is stored in.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.