pub(crate) struct AuraEmitOptions<'a> {
pub spell_group: Option<(u8, SpellGroupRule)>,
pub aura_idx_map: &'a FastMap<&'a str, u8>,
pub spell_id_map: &'a FastMap<&'a str, u32>,
pub emit_default_max_stacks: bool,
pub has_item_budget: bool,
pub hook_module: &'a str,
pub hook_suffix: &'a str,
}Expand description
Controls item- and spec-specific aura emission.
Fields§
§spell_group: Option<(u8, SpellGroupRule)>§aura_idx_map: &'a FastMap<&'a str, u8>§spell_id_map: &'a FastMap<&'a str, u32>§emit_default_max_stacks: bool§has_item_budget: bool§hook_module: &'a str§hook_suffix: &'a strAuto Trait Implementations§
impl<'a> Freeze for AuraEmitOptions<'a>
impl<'a> RefUnwindSafe for AuraEmitOptions<'a>
impl<'a> Send for AuraEmitOptions<'a>
impl<'a> Sync for AuraEmitOptions<'a>
impl<'a> Unpin for AuraEmitOptions<'a>
impl<'a> UnsafeUnpin for AuraEmitOptions<'a>
impl<'a> UnwindSafe for AuraEmitOptions<'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