Struct chesscom_openapi::models::chess_stats_tournament::ChessStatsTournament[][src]

pub struct ChessStatsTournament {
    pub count: i32,
    pub withdraw: i32,
    pub points: i32,
    pub highest_finish: i32,
}

Summary of tournaments participated in

Fields

count: i32

Number of tournaments joined

withdraw: i32

Number of tournaments withdrawn from

points: i32

Total number of points earned in tournaments

highest_finish: i32

Best tournament place

Implementations

impl ChessStatsTournament[src]

pub fn new(
    count: i32,
    withdraw: i32,
    points: i32,
    highest_finish: i32
) -> ChessStatsTournament
[src]

Summary of tournaments participated in

Trait Implementations

impl Clone for ChessStatsTournament[src]

impl Debug for ChessStatsTournament[src]

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

impl PartialEq<ChessStatsTournament> for ChessStatsTournament[src]

impl Serialize for ChessStatsTournament[src]

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