pub(crate) struct RuntimeCasting {Show 15 fields
pub(crate) instant_cast_pending_at: Option<SimTime>,
pub(crate) instant_off_gcd_casts_at: Option<SimTime>,
pub(crate) instant_off_gcd_spell_ids: Vec<u32>,
pub(crate) active_channel_target: Option<EnemyIdx>,
pub(crate) channel_generation: u64,
pub(crate) active_channel_damage_mult: f64,
pub(crate) active_channel_spell_id: Option<u32>,
pub(crate) active_channel_last_tick: SimTime,
pub(crate) active_channel_tick_interval_ms: u32,
pub(crate) active_channel_ticks_remaining: u8,
pub(crate) active_channel_on_last_tick: bool,
pub(crate) active_channel_pushback_count: u8,
pub(crate) free_action_dispatch_depth: u8,
pub(crate) channel_chain_spell_id: Option<u32>,
pub(crate) active_casts: FastMap<ActorId, ActiveCast>,
}Fields§
§instant_cast_pending_at: Option<SimTime>§instant_off_gcd_casts_at: Option<SimTime>§instant_off_gcd_spell_ids: Vec<u32>§active_channel_target: Option<EnemyIdx>§channel_generation: u64§active_channel_damage_mult: f64§active_channel_spell_id: Option<u32>§active_channel_last_tick: SimTime§active_channel_tick_interval_ms: u32§active_channel_ticks_remaining: u8§active_channel_on_last_tick: bool§active_channel_pushback_count: u8§free_action_dispatch_depth: u8§channel_chain_spell_id: Option<u32>§active_casts: FastMap<ActorId, ActiveCast>Trait Implementations§
Auto Trait Implementations§
impl Freeze for RuntimeCasting
impl RefUnwindSafe for RuntimeCasting
impl Send for RuntimeCasting
impl Sync for RuntimeCasting
impl Unpin for RuntimeCasting
impl UnsafeUnpin for RuntimeCasting
impl UnwindSafe for RuntimeCasting
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
§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