pub(crate) struct RotationCompileInput<'a> {
pub(crate) rotation: &'a Rotation,
pub(crate) spell_ids: &'a FastMap<String, u32>,
pub(crate) aura_ids: &'a FastMap<String, u32>,
pub(crate) secondary_resource_name: Option<&'a str>,
pub(crate) hints: &'a CatalogHints,
pub(crate) gating: &'a [SpellGate],
pub(crate) cost_bypass: &'a [CostBypass],
pub(crate) cooldown_bypass: &'a [CooldownBypass],
pub(crate) overrides: &'a [SpellOverride],
}Fields§
§rotation: &'a Rotation§spell_ids: &'a FastMap<String, u32>§aura_ids: &'a FastMap<String, u32>§secondary_resource_name: Option<&'a str>§hints: &'a CatalogHints§gating: &'a [SpellGate]§cost_bypass: &'a [CostBypass]§cooldown_bypass: &'a [CooldownBypass]§overrides: &'a [SpellOverride]Auto Trait Implementations§
impl<'a> Freeze for RotationCompileInput<'a>
impl<'a> RefUnwindSafe for RotationCompileInput<'a>
impl<'a> Send for RotationCompileInput<'a>
impl<'a> Sync for RotationCompileInput<'a>
impl<'a> Unpin for RotationCompileInput<'a>
impl<'a> UnsafeUnpin for RotationCompileInput<'a>
impl<'a> UnwindSafe for RotationCompileInput<'a>
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