[][src]Trait ears::AudioTags

pub trait AudioTags {
    fn get_tags(&self) -> Tags;
}

AudioTags trait implemented by all struct who can provides audio.

Required methods

fn get_tags(&self) -> Tags

Get the tags of the audio source.

Loading content...

Implementors

impl AudioTags for Music[src]

fn get_tags(&self) -> Tags[src]

Get the tags of a Sound.

Return

A borrowed pointer to the internal struct SoundTags

impl AudioTags for Sound[src]

fn get_tags(&self) -> Tags[src]

Get the tags of a Sound.

Return

A borrowed pointer to the internal struct SoundTags

impl AudioTags for SoundData[src]

fn get_tags(&self) -> Tags[src]

Get the tags of a Sound.

Return

A borrowed pointer to the internal struct SoundTags

Loading content...