Struct rfmod::FmodTag [] [src]

pub struct FmodTag {
    pub _type: TagType,
    pub data_type: TagDataType,
    pub name: String,
    pub updated: bool,
    // some fields omitted
}

Structure describing a piece of tag data.

Fields

_type: TagType

[r] The type of this tag.

data_type: TagDataType

[r] The type of data that this tag contains

name: String

[r] The name of this tag i.e. "TITLE", "ARTIST" etc.

updated: bool

[r] True if this tag has been updated since last being accessed with Sound::get_tag

Trait Implementations

impl Default for FmodTag
[src]

fn default() -> FmodTag

Returns the "default value" for a type. Read more