[][src]Struct licoricedev::models::tournament::TournamentStats

pub struct TournamentStats {
    pub games: u32,
    pub moves: u32,
    pub white_wins: u32,
    pub black_wins: u32,
    pub draws: u32,
    pub berserks: u32,
    pub average_rating: u16,
}

Fields

games: u32moves: u32white_wins: u32black_wins: u32draws: u32berserks: u32average_rating: u16

Trait Implementations

impl Clone for TournamentStats[src]

impl Debug for TournamentStats[src]

impl<'de> Deserialize<'de> for TournamentStats[src]

impl Serialize for TournamentStats[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[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> 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.