Struct multi_skill::systems::EloMMR[][src]

pub struct EloMMR {
    pub beta: f64,
    pub sig_limit: f64,
    pub drift_per_sec: f64,
    pub split_ties: bool,
    pub subsample_size: usize,
    pub subsample_bucket: f64,
    pub variant: EloMMRVariant,
}

Fields

beta: f64sig_limit: f64drift_per_sec: f64split_ties: boolsubsample_size: usizesubsample_bucket: f64variant: EloMMRVariant

Implementations

impl EloMMR[src]

pub fn default_fast() -> Self[src]

pub fn default_gaussian() -> Self[src]

pub fn default_gaussian_fast() -> Self[src]

pub fn from_limit(
    beta: f64,
    sig_limit: f64,
    split_ties: bool,
    fast: bool,
    variant: EloMMRVariant
) -> Self
[src]

Trait Implementations

impl Debug for EloMMR[src]

impl Default for EloMMR[src]

impl RatingSystem for EloMMR[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> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> Pointable for T

type Init = T

The type for initializers.

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, 

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>,