#[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<AnimationStop, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<AnimationStop, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<u8> for AnimationStop
impl From<u8> for AnimationStop
Source§fn from(number: u8) -> AnimationStop
fn from(number: u8) -> AnimationStop
Converts to this type from the input type.
Source§impl FromPrimitive for AnimationStop
impl FromPrimitive for AnimationStop
type Primitive = u8
fn from_primitive( number: <AnimationStop as FromPrimitive>::Primitive, ) -> 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
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
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