Struct babalcore::PointsCounter[][src]

pub struct PointsCounter { /* fields omitted */ }

Implementations

impl PointsCounter[src]

pub fn new() -> PointsCounter[src]

pub fn handle_dist(
    &mut self,
    delta: f64,
    dist: f64,
    time_to_complete: f64
) -> Vec<PlayerEvent>
[src]

pub fn score(&self) -> i32[src]

pub fn set_best_score(&mut self, best_score: i32)[src]

pub fn best_row(&self) -> isize[src]

pub fn best_dist(&self) -> f64[src]

pub fn time_pct(&self, time_to_complete: f64) -> f64[src]

Trait Implementations

impl Debug for PointsCounter[src]

impl Default for PointsCounter[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, 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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,