pub struct TournamentResult {
pub tournament: TournamentInfo,
pub nb_games: u32,
pub score: u32,
pub rank: u32,
pub rank_percent: u32,
}Fields§
§tournament: TournamentInfo§nb_games: u32§score: u32§rank: u32§rank_percent: u32Trait Implementations§
Source§impl Clone for TournamentResult
impl Clone for TournamentResult
Source§fn clone(&self) -> TournamentResult
fn clone(&self) -> TournamentResult
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 TournamentResult
impl Debug for TournamentResult
Source§impl<'de> Deserialize<'de> for TournamentResult
impl<'de> Deserialize<'de> for TournamentResult
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 TournamentResult
impl RefUnwindSafe for TournamentResult
impl Send for TournamentResult
impl Sync for TournamentResult
impl Unpin for TournamentResult
impl UnwindSafe for TournamentResult
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