pub struct Difficulty {
    pub hp_drain_rate: f32,
    pub circle_size: f32,
    pub overall_difficulty: f32,
    pub approach_rate: f32,
    pub slider_multiplier: f64,
    pub slider_tick_rate: f64,
}
Expand description

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

Fields§

§hp_drain_rate: f32§circle_size: f32§overall_difficulty: f32§approach_rate: f32§slider_multiplier: f64§slider_tick_rate: f64

Trait Implementations§

source§

impl Clone for Difficulty

source§

fn clone(&self) -> Difficulty

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 Difficulty

source§

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

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

impl DecodeBeatmap for Difficulty

§

type Error = ParseDifficultyError

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

type State = DifficultyState

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(_: &mut Self::State, _: &str) -> Result<(), Self::Error>

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

fn parse_difficulty( state: &mut Self::State, line: &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 Difficulty

source§

fn default() -> Self

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

impl From<Difficulty> for Beatmap

source§

fn from(difficulty: Difficulty) -> Self

Converts to this type from the input type.
source§

impl From<DifficultyState> for Difficulty

source§

fn from(state: DifficultyState) -> Self

Converts to this type from the input type.
source§

impl PartialEq for Difficulty

source§

fn eq(&self, other: &Difficulty) -> 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 StructuralPartialEq for Difficulty

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.