pub struct PlayerRoundStats {
pub puuid: String,
pub kills: Vec<Kill>,
pub damage: Vec<Damage>,
pub score: i32,
pub economy: Economy,
pub ability: Ability,
}Expand description
val-console-match-v1.PlayerRoundStatsDto data object.
Fields§
§puuid: String§kills: Vec<Kill>§damage: Vec<Damage>§score: i32§economy: Economy§ability: AbilityTrait Implementations§
Source§impl Clone for PlayerRoundStats
impl Clone for PlayerRoundStats
Source§fn clone(&self) -> PlayerRoundStats
fn clone(&self) -> PlayerRoundStats
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 PlayerRoundStats
impl Debug for PlayerRoundStats
Source§impl<'de> Deserialize<'de> for PlayerRoundStats
impl<'de> Deserialize<'de> for PlayerRoundStats
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 PlayerRoundStats
impl RefUnwindSafe for PlayerRoundStats
impl Send for PlayerRoundStats
impl Sync for PlayerRoundStats
impl Unpin for PlayerRoundStats
impl UnsafeUnpin for PlayerRoundStats
impl UnwindSafe for PlayerRoundStats
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