Struct ears::Tags [] [src]

pub struct Tags {
    pub title: String,
    pub copyright: String,
    pub software: String,
    pub artist: String,
    pub comment: String,
    pub date: String,
    pub album: String,
    pub license: String,
    pub track_number: String,
    pub genre: String,
}

Structure containing the tags of a sound.

If the tags doesn't exist in the sound file, the string is "".

Fields

title

The title of the sound as a String

copyright

The Copyright of the sound as a String

software

The name of the software used to create the sound as a String

artist

The name of the artist of the sound as a String

comment

A comment as a String

date

The creation date of the sound as a String

album

The name of the album where the sound come from as a String

license

The license of the sound as a String

track_number

The tracknumber of the sound as a String

genre

The genre of the sound as a String

Trait Implementations

Derived Implementations

impl PartialEq for Tags

fn eq(&self, __arg_0: &Tags) -> bool

fn ne(&self, __arg_0: &Tags) -> bool

impl Debug for Tags

fn fmt(&self, __arg_0: &mut Formatter) -> Result

impl Clone for Tags

fn clone(&self) -> Tags

fn clone_from(&mut self, source: &Self)