Struct rosu_pp::fruits::DifficultyAttributes[][src]

pub struct DifficultyAttributes {
    pub stars: f32,
    pub max_combo: usize,
    pub ar: f32,
    pub n_fruits: usize,
    pub n_droplets: usize,
    pub n_tiny_droplets: usize,
}

Various data created through the star calculation. This data is necessary to calculate PP.

Fields

stars: f32max_combo: usizear: f32n_fruits: usizen_droplets: usizen_tiny_droplets: usize

Trait Implementations

impl Clone for DifficultyAttributes[src]

impl Debug for DifficultyAttributes[src]

impl Default for DifficultyAttributes[src]

impl FruitsAttributeProvider for DifficultyAttributes[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.