pub struct MatchmakerPlayerStats {
pub game_mode_id: u32,
pub losses: u32,
pub min_games: u32,
pub season_id: u32,
pub total_games: u32,
pub wins: u32,
}Fields§
§game_mode_id: u32§losses: u32§min_games: u32§season_id: u32§total_games: u32§wins: u32Trait Implementations§
Source§impl Debug for MatchmakerPlayerStats
impl Debug for MatchmakerPlayerStats
Source§impl<'de> Deserialize<'de> for MatchmakerPlayerStats
impl<'de> Deserialize<'de> for MatchmakerPlayerStats
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 MatchmakerPlayerStats
impl RefUnwindSafe for MatchmakerPlayerStats
impl Send for MatchmakerPlayerStats
impl Sync for MatchmakerPlayerStats
impl Unpin for MatchmakerPlayerStats
impl UnsafeUnpin for MatchmakerPlayerStats
impl UnwindSafe for MatchmakerPlayerStats
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