Enum oppai_rs::Combo[][src]

pub enum Combo {
    FC(u32),
    NonFC {
        max_combo: u32,
        misses: u32,
    },
}

Combo can be an FC or a non-FC with max combo and # of misses.

Variants

FC(u32)

Full combo, no misses, u32 is the # of slider ends missed.

NonFC

Not a full combo.

Fields of NonFC

max_combo: u32misses: u32

Implementations

impl Combo[src]

pub const PERFECT: Combo[src]

A maximal combo FC.

pub fn non_fc(max_combo: u32, misses: u32) -> Combo[src]

Constructs a non-fc Combo.

Trait Implementations

impl Clone for Combo[src]

impl Copy for Combo[src]

impl Eq for Combo[src]

impl PartialEq<Combo> for Combo[src]

impl StructuralEq for Combo[src]

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