[][src]Struct osuparse::MetadataSection

pub struct MetadataSection {
    pub title: String,
    pub title_unicode: String,
    pub artist: String,
    pub artist_unicode: String,
    pub creator: String,
    pub version: String,
    pub source: String,
    pub tags: Vec<String>,
    pub beatmap_id: i32,
    pub beatmap_set_id: i32,
}

Metadata relating to the beatmap

Fields

title: String

Is the title of the song limited to ASCII characters, e.g. Yoru Naku Usagi wa Yume o Miru.

title_unicode: String

Is the title of the song with unicode support, e.g. 夜啼く兎は夢を見る.

artist: String

Is the name of the song's artist limited to ASCII characters, e.g. MISATO

artist_unicode: String

Is the name of the song's artist with unicode support, e.g. 美里

creator: String

Username of the maker of the beatmap, e.g. Sotarks

version: String

The name of the beatmap's difficulty, e.g. Hard

source: String

The origin of the song with unicode support, e.g. 東方Project

tags: Vec<String>beatmap_id: i32

Is the ID of the single beatmap.

beatmap_set_id: i32

Is the ID of the beatmap set that the beatmap belongs to.

Trait Implementations

impl Default for MetadataSection
[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From for T
[src]

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

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.