Struct etterna::TapJudgements[][src]

pub struct TapJudgements {
    pub marvelouses: u32,
    pub perfects: u32,
    pub greats: u32,
    pub goods: u32,
    pub bads: u32,
    pub misses: u32,
}

Judgement data, only the basic tap judgements

Fields

marvelouses: u32perfects: u32greats: u32goods: u32bads: u32misses: u32

Trait Implementations

impl Clone for TapJudgements[src]

impl Debug for TapJudgements[src]

impl Default for TapJudgements[src]

impl Eq for TapJudgements[src]

impl From<FullJudgements> for TapJudgements[src]

impl Hash for TapJudgements[src]

impl Index<TapJudgement> for TapJudgements[src]

type Output = u32

The returned type after indexing.

impl IndexMut<TapJudgement> for TapJudgements[src]

impl PartialEq<TapJudgements> for TapJudgements[src]

impl StructuralEq for TapJudgements[src]

impl StructuralPartialEq for TapJudgements[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.