#[repr(u8)]pub enum AnimationStop {
Show 17 variants
None = 0,
Instant = 1,
SecondUse = 2,
Transition = 3,
Partial = 4,
Ended = 5,
Cancel = 6,
StowedChange = 7,
Interrupt = 8,
Death = 9,
Downed = 10,
CrowdControl = 11,
MoveBehind = 12,
MoveSkill = 13,
MoveDodge = 14,
MoveStop = 15,
Unknown(u8),
}
Expand description
Skill animation stop (UNOFFICIAL).
Present in result
for activation cancels.
Variants§
None = 0
Instant = 1
SecondUse = 2
Transition = 3
Partial = 4
Ended = 5
Cancel = 6
StowedChange = 7
Interrupt = 8
Death = 9
Downed = 10
CrowdControl = 11
MoveBehind = 12
MoveSkill = 13
MoveDodge = 14
MoveStop = 15
Unknown(u8)
Unknown or invalid.
Trait Implementations§
Source§impl Clone for AnimationStop
impl Clone for AnimationStop
Source§fn clone(&self) -> AnimationStop
fn clone(&self) -> AnimationStop
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 AnimationStop
impl Debug for AnimationStop
Source§impl<'de> Deserialize<'de> for AnimationStop
impl<'de> Deserialize<'de> for AnimationStop
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<AnimationStop> for u8
impl From<AnimationStop> for u8
Source§fn from(enum_value: AnimationStop) -> Self
fn from(enum_value: AnimationStop) -> Self
Converts to this type from the input type.
Source§impl From<u8> for AnimationStop
impl From<u8> for AnimationStop
Source§impl FromPrimitive for AnimationStop
impl FromPrimitive for AnimationStop
Source§impl Hash for AnimationStop
impl Hash for AnimationStop
Source§impl Ord for AnimationStop
impl Ord for AnimationStop
Source§fn cmp(&self, other: &AnimationStop) -> Ordering
fn cmp(&self, other: &AnimationStop) -> 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 AnimationStop
impl PartialEq for AnimationStop
Source§impl PartialOrd for AnimationStop
impl PartialOrd for AnimationStop
Source§impl Serialize for AnimationStop
impl Serialize for AnimationStop
impl Copy for AnimationStop
impl Eq for AnimationStop
impl StructuralPartialEq for AnimationStop
Auto Trait Implementations§
impl Freeze for AnimationStop
impl RefUnwindSafe for AnimationStop
impl Send for AnimationStop
impl Sync for AnimationStop
impl Unpin for AnimationStop
impl UnwindSafe for AnimationStop
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