pub struct ChessStatsTournament {
pub count: i32,
pub withdraw: i32,
pub points: i32,
pub highest_finish: i32,
}
Expand description
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§
Trait Implementations§
Source§impl Clone for ChessStatsTournament
impl Clone for ChessStatsTournament
Source§fn clone(&self) -> ChessStatsTournament
fn clone(&self) -> ChessStatsTournament
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ChessStatsTournament
impl Debug for ChessStatsTournament
Source§impl<'de> Deserialize<'de> for ChessStatsTournament
impl<'de> Deserialize<'de> for ChessStatsTournament
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ChessStatsTournament
impl PartialEq for ChessStatsTournament
Source§impl Serialize for ChessStatsTournament
impl Serialize for ChessStatsTournament
impl StructuralPartialEq for ChessStatsTournament
Auto Trait Implementations§
impl Freeze for ChessStatsTournament
impl RefUnwindSafe for ChessStatsTournament
impl Send for ChessStatsTournament
impl Sync for ChessStatsTournament
impl Unpin for ChessStatsTournament
impl UnwindSafe for ChessStatsTournament
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more