Struct chesscom_openapi::models::chess_stats_best::ChessStatsBest[][src]

pub struct ChessStatsBest {
    pub rating: i32,
    pub date: DateTime<Utc>,
    pub game: String,
}

Best rating achieved by a win

Fields

rating: i32

Highest rating achieved

date: DateTime<Utc>

Timestamp of the best-win game

game: String

URL of the best-win game

Implementations

impl ChessStatsBest[src]

pub fn new(rating: i32, date: DateTime<Utc>, game: String) -> ChessStatsBest[src]

Best rating achieved by a win

Trait Implementations

impl Clone for ChessStatsBest[src]

impl Debug for ChessStatsBest[src]

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

impl PartialEq<ChessStatsBest> for ChessStatsBest[src]

impl Serialize for ChessStatsBest[src]

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