pub struct ScoreDetailedCTFEntry {
pub id: Player,
pub level: Level,
pub captures: 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 CTF.
Fields§
§id: Player§level: Level§captures: u16§score: Score§kills: u16§deaths: u16§damage: f32§ping: u16Trait Implementations§
Source§impl Clone for ScoreDetailedCTFEntry
impl Clone for ScoreDetailedCTFEntry
Source§fn clone(&self) -> ScoreDetailedCTFEntry
fn clone(&self) -> ScoreDetailedCTFEntry
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 ScoreDetailedCTFEntry
impl Debug for ScoreDetailedCTFEntry
Source§impl<'de> DeserializeV5<'de> for ScoreDetailedCTFEntry
impl<'de> DeserializeV5<'de> for ScoreDetailedCTFEntry
fn deserialize(de: &mut AirmashDeserializerV5<'de>) -> Result<Self>
Source§impl SerializeV5 for ScoreDetailedCTFEntry
impl SerializeV5 for ScoreDetailedCTFEntry
fn serialize<'ser>(&self, ser: &mut AirmashSerializerV5<'ser>) -> Result
impl Copy for ScoreDetailedCTFEntry
Auto Trait Implementations§
impl Freeze for ScoreDetailedCTFEntry
impl RefUnwindSafe for ScoreDetailedCTFEntry
impl Send for ScoreDetailedCTFEntry
impl Sync for ScoreDetailedCTFEntry
impl Unpin for ScoreDetailedCTFEntry
impl UnwindSafe for ScoreDetailedCTFEntry
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