#[non_exhaustive]#[repr(i32)]pub enum AuraState {
Show 25 variants
Defensive = 1,
Wounded20 = 2,
Unbalanced = 3,
Frozen = 4,
Marked = 5,
Wounded25 = 6,
Defensive2 = 7,
Banished = 8,
Dazed = 9,
Victorious = 10,
Rampage = 11,
FaerieFire = 12,
Wounded35 = 13,
RaidEncounter2 = 14,
DruidPeriodicHeal = 15,
RoguePoisoned = 16,
Enraged = 17,
Bleeding = 18,
Vulnerable = 19,
ArenaPreparation = 20,
WoundHealth20OrAbove80 = 21,
RaidEncounter = 22,
Healthy75 = 23,
WoundHealth35OrAbove80 = 24,
Wounded50 = 25,
}Expand description
Complete TrinityCore/DBC AuraStateType vocabulary.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Defensive = 1
Wounded20 = 2
Unbalanced = 3
Frozen = 4
Marked = 5
Wounded25 = 6
Defensive2 = 7
Banished = 8
Dazed = 9
Victorious = 10
Rampage = 11
FaerieFire = 12
Wounded35 = 13
RaidEncounter2 = 14
DruidPeriodicHeal = 15
RoguePoisoned = 16
Enraged = 17
Bleeding = 18
Vulnerable = 19
ArenaPreparation = 20
WoundHealth20OrAbove80 = 21
RaidEncounter = 22
Healthy75 = 23
WoundHealth35OrAbove80 = 24
Wounded50 = 25
Implementations§
Trait Implementations§
impl Copy for AuraState
impl Eq for AuraState
impl StructuralPartialEq for AuraState
Auto Trait Implementations§
impl Freeze for AuraState
impl RefUnwindSafe for AuraState
impl Send for AuraState
impl Sync for AuraState
impl Unpin for AuraState
impl UnsafeUnpin for AuraState
impl UnwindSafe for AuraState
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