[][src]Struct ears::Tags

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: String

The title of the sound as a String

copyright: String

The Copyright of the sound as a String

software: String

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

artist: String

The name of the artist of the sound as a String

comment: String

A comment as a String

date: String

The creation date of the sound as a String

album: String

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

license: String

The license of the sound as a String

track_number: String

The tracknumber of the sound as a String

genre: String

The genre of the sound as a String

Trait Implementations

impl PartialEq<Tags> for Tags[src]

impl Clone for Tags[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for Tags[src]

Auto Trait Implementations

impl Send for Tags

impl Unpin for Tags

impl Sync for Tags

impl UnwindSafe for Tags

impl RefUnwindSafe for Tags

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]