pub struct SpellAuraRestrictionsRow {Show 15 fields
pub ID: i32,
pub DifficultyID: i32,
pub CasterAuraState: i32,
pub TargetAuraState: i32,
pub ExcludeCasterAuraState: i32,
pub ExcludeTargetAuraState: i32,
pub CasterAuraSpell: i32,
pub TargetAuraSpell: i32,
pub ExcludeCasterAuraSpell: i32,
pub ExcludeTargetAuraSpell: i32,
pub CasterAuraType: i32,
pub TargetAuraType: i32,
pub ExcludeCasterAuraType: i32,
pub ExcludeTargetAuraType: i32,
pub SpellID: i32,
}Expand description
DBC row from SpellAuraRestrictions.db2: required and excluded aura/state conditions.
Fields§
§ID: i32§DifficultyID: i32§CasterAuraState: i32§TargetAuraState: i32§ExcludeCasterAuraState: i32§ExcludeTargetAuraState: i32§CasterAuraSpell: i32§TargetAuraSpell: i32§ExcludeCasterAuraSpell: i32§ExcludeTargetAuraSpell: i32§CasterAuraType: i32§TargetAuraType: i32§ExcludeCasterAuraType: i32§ExcludeTargetAuraType: i32§SpellID: i32Trait Implementations§
Source§impl Clone for SpellAuraRestrictionsRow
impl Clone for SpellAuraRestrictionsRow
Source§fn clone(&self) -> SpellAuraRestrictionsRow
fn clone(&self) -> SpellAuraRestrictionsRow
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 SpellAuraRestrictionsRow
impl Debug for SpellAuraRestrictionsRow
Source§impl<'de> Deserialize<'de> for SpellAuraRestrictionsRow
impl<'de> Deserialize<'de> for SpellAuraRestrictionsRow
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for SpellAuraRestrictionsRow
impl RefUnwindSafe for SpellAuraRestrictionsRow
impl Send for SpellAuraRestrictionsRow
impl Sync for SpellAuraRestrictionsRow
impl Unpin for SpellAuraRestrictionsRow
impl UnsafeUnpin for SpellAuraRestrictionsRow
impl UnwindSafe for SpellAuraRestrictionsRow
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