pub struct PlayerPerformance {Show 14 fields
pub player_id: u32,
pub player_name: String,
pub multi_kills_2k: u8,
pub multi_kills_3k: u8,
pub multi_kills_4k: u8,
pub multi_kills_5k: u8,
pub clutch_1v1: u8,
pub clutch_1v2: u8,
pub clutch_1v3: u8,
pub clutch_1v4: u8,
pub clutch_1v5: u8,
pub econ_rating: u16,
pub plants: u8,
pub defuses: u8,
}Expand description
Detailed performance stats for a single player.
Fields§
§player_id: u32§player_name: String§multi_kills_2k: u8§multi_kills_3k: u8§multi_kills_4k: u8§multi_kills_5k: u8§clutch_1v1: u8§clutch_1v2: u8§clutch_1v3: u8§clutch_1v4: u8§clutch_1v5: u8§econ_rating: u16§plants: u8§defuses: u8Trait Implementations§
Source§impl Clone for PlayerPerformance
impl Clone for PlayerPerformance
Source§fn clone(&self) -> PlayerPerformance
fn clone(&self) -> PlayerPerformance
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 PlayerPerformance
impl Debug for PlayerPerformance
Auto Trait Implementations§
impl Freeze for PlayerPerformance
impl RefUnwindSafe for PlayerPerformance
impl Send for PlayerPerformance
impl Sync for PlayerPerformance
impl Unpin for PlayerPerformance
impl UnwindSafe for PlayerPerformance
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more