#[repr(C)]pub struct StatsFrame {Show 13 fields
pub gems_collected: i32,
pub kills: i32,
pub daggers_fired: i32,
pub daggers_hit: i32,
pub enemies_alive: i32,
pub level_gems: i32,
pub homing: i32,
pub gems_despawned: i32,
pub gems_eaten: i32,
pub gems_total: i32,
pub daggers_eaten: i32,
pub per_enemy_alive_count: [i16; 17],
pub per_enemy_kill_count: [i16; 17],
}
Fields§
§gems_collected: i32
§kills: i32
§daggers_fired: i32
§daggers_hit: i32
§enemies_alive: i32
§level_gems: i32
§homing: i32
§gems_despawned: i32
§gems_eaten: i32
§gems_total: i32
§daggers_eaten: i32
§per_enemy_alive_count: [i16; 17]
§per_enemy_kill_count: [i16; 17]
Trait Implementations§
Source§impl Clone for StatsFrame
impl Clone for StatsFrame
Source§fn clone(&self) -> StatsFrame
fn clone(&self) -> StatsFrame
Returns a copy 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 StatsFrame
impl Debug for StatsFrame
Source§impl Default for StatsFrame
impl Default for StatsFrame
Source§fn default() -> StatsFrame
fn default() -> StatsFrame
Returns the “default value” for a type. Read more
Source§impl Serialize for StatsFrame
impl Serialize for StatsFrame
impl Copy for StatsFrame
Auto Trait Implementations§
impl Freeze for StatsFrame
impl RefUnwindSafe for StatsFrame
impl Send for StatsFrame
impl Sync for StatsFrame
impl Unpin for StatsFrame
impl UnwindSafe for StatsFrame
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,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§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