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

The title of the sound as a String

The Copyright of the sound as a String

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

The name of the artist of the sound as a String

A comment as a String

The creation date of the sound as a String

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

The license of the sound as a String

The tracknumber of the sound as a String

The genre of the sound as a String

Trait Implementations

impl Clone for Tags
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for Tags
[src]

[src]

Formats the value using the given formatter. Read more

impl PartialEq for Tags
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

Auto Trait Implementations

impl Send for Tags

impl Sync for Tags