Enum evtc::skill::Activation
source · #[repr(u8)]pub enum Activation {
None = 0,
Start = 1,
QuicknessUnused = 2,
CancelFire = 3,
CancelCancel = 4,
Reset = 5,
Unknown(u8),
}
Expand description
Skill activation (cast).
Arc calls this “combat activation”.
Variants§
None = 0
Not used, different kind of event.
Start = 1
Started skill/animation activation.
QuicknessUnused = 2
Unused as of 5th November 2019.
CancelFire = 3
Stopped skill activation with reaching tooltip time.
CancelCancel = 4
Stopped skill activation without reaching tooltip time.
Reset = 5
Animation completed fully.
Unknown(u8)
Unknown or invalid.
Trait Implementations§
source§impl Clone for Activation
impl Clone for Activation
source§fn clone(&self) -> Activation
fn clone(&self) -> Activation
Returns a copy 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 Activation
impl Debug for Activation
source§impl<'de> Deserialize<'de> for Activation
impl<'de> Deserialize<'de> for Activation
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
source§impl From<Activation> for u8
impl From<Activation> for u8
source§fn from(enum_value: Activation) -> Self
fn from(enum_value: Activation) -> Self
Converts to this type from the input type.
source§impl From<u8> for Activation
impl From<u8> for Activation
source§impl FromPrimitive for Activation
impl FromPrimitive for Activation
source§impl Hash for Activation
impl Hash for Activation
source§impl Ord for Activation
impl Ord for Activation
source§fn cmp(&self, other: &Activation) -> Ordering
fn cmp(&self, other: &Activation) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq for Activation
impl PartialEq for Activation
source§fn eq(&self, other: &Activation) -> bool
fn eq(&self, other: &Activation) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd for Activation
impl PartialOrd for Activation
source§fn partial_cmp(&self, other: &Activation) -> Option<Ordering>
fn partial_cmp(&self, other: &Activation) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moresource§impl Serialize for Activation
impl Serialize for Activation
impl Copy for Activation
impl Eq for Activation
impl StructuralPartialEq for Activation
Auto Trait Implementations§
impl Freeze for Activation
impl RefUnwindSafe for Activation
impl Send for Activation
impl Sync for Activation
impl Unpin for Activation
impl UnwindSafe for Activation
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