pub struct ScoreDetailedBTREntry {
pub id: Player,
pub level: Level,
pub alive: bool,
pub wins: u16,
pub score: Score,
pub kills: u16,
pub deaths: u16,
pub damage: f32,
pub ping: u16,
}Expand description
Per-player data for detailed (tab) menu in BTR.
Fields§
§id: Player§level: Level§alive: bool§wins: u16§score: Score§kills: u16§deaths: u16§damage: f32§ping: u16Trait Implementations§
Source§impl Clone for ScoreDetailedBTREntry
impl Clone for ScoreDetailedBTREntry
Source§fn clone(&self) -> ScoreDetailedBTREntry
fn clone(&self) -> ScoreDetailedBTREntry
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ScoreDetailedBTREntry
impl Debug for ScoreDetailedBTREntry
Source§impl<'de> DeserializeV5<'de> for ScoreDetailedBTREntry
impl<'de> DeserializeV5<'de> for ScoreDetailedBTREntry
fn deserialize(de: &mut AirmashDeserializerV5<'de>) -> Result<Self>
Source§impl SerializeV5 for ScoreDetailedBTREntry
impl SerializeV5 for ScoreDetailedBTREntry
fn serialize<'ser>(&self, ser: &mut AirmashSerializerV5<'ser>) -> Result
impl Copy for ScoreDetailedBTREntry
Auto Trait Implementations§
impl Freeze for ScoreDetailedBTREntry
impl RefUnwindSafe for ScoreDetailedBTREntry
impl Send for ScoreDetailedBTREntry
impl Sync for ScoreDetailedBTREntry
impl Unpin for ScoreDetailedBTREntry
impl UnsafeUnpin for ScoreDetailedBTREntry
impl UnwindSafe for ScoreDetailedBTREntry
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