pub(super) struct FireRuntime {
pub(super) glorious_incandescence: bool,
pub(super) heating_up_applied_ms: u32,
pub(super) hot_streak_pyro_in_flight: bool,
pub(super) fired_up_count: usize,
pub(super) spellfire_spheres: u8,
pub(super) combustion_spheres: u8,
pub(super) phoenix_exceptional_remaining: u8,
}Fields§
§glorious_incandescence: bool§heating_up_applied_ms: u32§hot_streak_pyro_in_flight: bool§fired_up_count: usize§spellfire_spheres: u8§combustion_spheres: u8§phoenix_exceptional_remaining: u8Trait Implementations§
Source§impl Clone for FireRuntime
impl Clone for FireRuntime
Source§fn clone(&self) -> FireRuntime
fn clone(&self) -> FireRuntime
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 FireRuntime
impl Debug for FireRuntime
Source§impl Default for FireRuntime
impl Default for FireRuntime
Source§fn default() -> FireRuntime
fn default() -> FireRuntime
Returns the “default value” for a type. Read more
impl Copy for FireRuntime
Auto Trait Implementations§
impl Freeze for FireRuntime
impl RefUnwindSafe for FireRuntime
impl Send for FireRuntime
impl Sync for FireRuntime
impl Unpin for FireRuntime
impl UnsafeUnpin for FireRuntime
impl UnwindSafe for FireRuntime
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