pub struct MatchStats {
pub kills: i32,
pub assists: i32,
pub deaths: i32,
pub mvps: i32,
pub score: i32,
}Expand description
Per-match aggregate stats. Mirrors player_match_stats.
Fields§
§kills: i32Match kills.
assists: i32Match assists.
deaths: i32Match deaths.
mvps: i32Round-MVP awards earned this match.
score: i32Match score.
Trait Implementations§
Source§impl Clone for MatchStats
impl Clone for MatchStats
Source§fn clone(&self) -> MatchStats
fn clone(&self) -> MatchStats
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 MatchStats
impl Debug for MatchStats
Source§impl Default for MatchStats
impl Default for MatchStats
Source§fn default() -> MatchStats
fn default() -> MatchStats
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for MatchStats
impl<'de> Deserialize<'de> for MatchStats
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 MatchStats
impl PartialEq for MatchStats
Source§impl Serialize for MatchStats
impl Serialize for MatchStats
impl Eq for MatchStats
impl StructuralPartialEq for MatchStats
Auto Trait Implementations§
impl Freeze for MatchStats
impl RefUnwindSafe for MatchStats
impl Send for MatchStats
impl Sync for MatchStats
impl Unpin for MatchStats
impl UnsafeUnpin for MatchStats
impl UnwindSafe for MatchStats
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