pub struct DynamicPlayerStatsSnapshot {
pub player_id: PlayerId,
pub name: String,
pub is_team_0: bool,
pub stats: Vec<ExportedStat>,
}Fields§
§player_id: PlayerId§name: String§is_team_0: bool§stats: Vec<ExportedStat>Trait Implementations§
Source§impl Clone for DynamicPlayerStatsSnapshot
impl Clone for DynamicPlayerStatsSnapshot
Source§fn clone(&self) -> DynamicPlayerStatsSnapshot
fn clone(&self) -> DynamicPlayerStatsSnapshot
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 DynamicPlayerStatsSnapshot
impl Debug for DynamicPlayerStatsSnapshot
impl StructuralPartialEq for DynamicPlayerStatsSnapshot
Auto Trait Implementations§
impl Freeze for DynamicPlayerStatsSnapshot
impl RefUnwindSafe for DynamicPlayerStatsSnapshot
impl Send for DynamicPlayerStatsSnapshot
impl Sync for DynamicPlayerStatsSnapshot
impl Unpin for DynamicPlayerStatsSnapshot
impl UnsafeUnpin for DynamicPlayerStatsSnapshot
impl UnwindSafe for DynamicPlayerStatsSnapshot
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