pub struct Metadata {
    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: String,
    pub beatmap_id: i32,
    pub beatmap_set_id: i32,
}
Expand description

Struct containing all data from a .osu file’s [Metadata] section.

Fields§

§title: String§title_unicode: String§artist: String§artist_unicode: String§creator: String§version: String§source: String§tags: String§beatmap_id: i32§beatmap_set_id: i32

Trait Implementations§

source§

impl Clone for Metadata

source§

fn clone(&self) -> Metadata

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Metadata

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl DecodeBeatmap for Metadata

§

type Error = ParseMetadataError

Error type in case something goes wrong while parsing. Read more
§

type State = Metadata

The parsing state which will be updated on each line and turned into Self at the end.
source§

fn parse_general(_: &mut Self::State, _: &str) -> Result<(), Self::Error>

Update the state based on a line of the [General] section.
source§

fn parse_editor(_: &mut Self::State, _: &str) -> Result<(), Self::Error>

Update the state based on a line of the [Editor] section.
source§

fn parse_metadata( state: &mut Self::State, line: &str ) -> Result<(), Self::Error>

Update the state based on a line of the [Metadata] section.
source§

fn parse_difficulty(_: &mut Self::State, _: &str) -> Result<(), Self::Error>

Update the state based on a line of the [Difficulty] section.
source§

fn parse_events(_: &mut Self::State, _: &str) -> Result<(), Self::Error>

Update the state based on a line of the [Events] section.
source§

fn parse_timing_points(_: &mut Self::State, _: &str) -> Result<(), Self::Error>

Update the state based on a line of the [TimingPoints] section.
source§

fn parse_colors(_: &mut Self::State, _: &str) -> Result<(), Self::Error>

Update the state based on a line of the [Colours] section.
source§

fn parse_hit_objects(_: &mut Self::State, _: &str) -> Result<(), Self::Error>

Update the state based on a line of the [HitObjects] section.
source§

fn parse_variables(_: &mut Self::State, _: &str) -> Result<(), Self::Error>

Update the state based on a line of the [Variables] section.
source§

fn parse_catch_the_beat(_: &mut Self::State, _: &str) -> Result<(), Self::Error>

Update the state based on a line of the [CatchTheBeat] section.
source§

fn parse_mania(_: &mut Self::State, _: &str) -> Result<(), Self::Error>

Update the state based on a line of the [Mania] section.
source§

fn decode<R: BufRead>(src: R) -> Result<Self, Error>

The key method to read and parse content of a .osu file into Self. Read more
source§

fn should_skip_line(line: &str) -> bool

Whether a line should not be forwarded to the parsing methods.
source§

impl Default for Metadata

source§

fn default() -> Self

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

impl From<Metadata> for Beatmap

source§

fn from(metadata: Metadata) -> Self

Converts to this type from the input type.
source§

impl PartialEq for Metadata

source§

fn eq(&self, other: &Metadata) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

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

impl Eq for Metadata

source§

impl StructuralPartialEq for Metadata

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

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

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

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

fn clone_into(&self, target: &mut T)

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

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.