pub struct Metadata {
    pub title: Option<Title>,
    pub title_unicode: Option<TitleUnicode>,
    pub artist: Option<Artist>,
    pub artist_unicode: Option<ArtistUnicode>,
    pub creator: Option<Creator>,
    pub version: Option<Version>,
    pub source: Option<Source>,
    pub tags: Option<Tags>,
    pub beatmap_id: Option<BeatmapID>,
    pub beatmap_set_id: Option<BeatmapSetID>,
}
Expand description

A struct representing the metadata section of an osu file.

Fields

title: Option<Title>

Romanised song title.

title_unicode: Option<TitleUnicode>

Song title.

artist: Option<Artist>

ROmanised song artist.

artist_unicode: Option<ArtistUnicode>

Song artist.

creator: Option<Creator>

Beatmap creator.

version: Option<Version>

Difficulty name.

source: Option<Source>

Original media the song was produced for.

tags: Option<Tags>

Search terms.

beatmap_id: Option<BeatmapID>

Difficulty ID.

beatmap_set_id: Option<BeatmapSetID>

Beatmap ID.

Implementations

Creates a new instance, with all fields being None.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Feeds this value into the given Hasher. Read more

Feeds a slice of this type into the given Hasher. Read more

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.