pub struct PlayerAgentStats {Show 18 fields
pub agent: String,
pub usage_count: u32,
pub usage_pct: f32,
pub rounds: u32,
pub rating: f32,
pub acs: f32,
pub kd: f32,
pub adr: f32,
pub kast: f32,
pub kpr: f32,
pub apr: f32,
pub fkpr: f32,
pub fdpr: f32,
pub kills: u32,
pub deaths: u32,
pub assists: u32,
pub first_kills: u32,
pub first_deaths: u32,
}Expand description
Agent usage and performance statistics for a player.
Fields§
§agent: String§usage_count: u32§usage_pct: f32§rounds: u32§rating: f32§acs: f32§kd: f32§adr: f32§kast: f32§kpr: f32§apr: f32§fkpr: f32§fdpr: f32§kills: u32§deaths: u32§assists: u32§first_kills: u32§first_deaths: u32Trait Implementations§
Source§impl Clone for PlayerAgentStats
impl Clone for PlayerAgentStats
Source§fn clone(&self) -> PlayerAgentStats
fn clone(&self) -> PlayerAgentStats
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 PlayerAgentStats
impl Debug for PlayerAgentStats
Auto Trait Implementations§
impl Freeze for PlayerAgentStats
impl RefUnwindSafe for PlayerAgentStats
impl Send for PlayerAgentStats
impl Sync for PlayerAgentStats
impl Unpin for PlayerAgentStats
impl UnwindSafe for PlayerAgentStats
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