pub struct SwissStats {
pub games: i32,
pub white_wins: i32,
pub black_wins: i32,
pub draws: i32,
pub byes: i32,
pub absences: i32,
pub average_rating: f64,
}Fields§
§games: i32§white_wins: i32§black_wins: i32§draws: i32§byes: i32§absences: i32§average_rating: f64Trait Implementations§
Source§impl Clone for SwissStats
impl Clone for SwissStats
Source§fn clone(&self) -> SwissStats
fn clone(&self) -> SwissStats
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 SwissStats
impl Debug for SwissStats
Source§impl<'de> Deserialize<'de> for SwissStats
impl<'de> Deserialize<'de> for SwissStats
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
Auto Trait Implementations§
impl Freeze for SwissStats
impl RefUnwindSafe for SwissStats
impl Send for SwissStats
impl Sync for SwissStats
impl Unpin for SwissStats
impl UnsafeUnpin for SwissStats
impl UnwindSafe for SwissStats
Blanket Implementations§
impl<B> BodyBounds for Bwhere
B: Serialize,
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