Enum ark_api::world::AnimationReply
source · [−]#[repr(u32)]
pub enum AnimationReply {
AnimationFinished,
AnimationCancelled,
}
Variants
AnimationFinished
AnimationCancelled
Trait Implementations
sourceimpl CheckedBitPattern for AnimationReplyType
impl CheckedBitPattern for AnimationReplyType
type Bits = u32
type Bits = u32
Self
must have the same layout as the specified Bits
except for
the possible invalid bit patterns being checked during
is_valid_bit_pattern
. Read more
sourcefn is_valid_bit_pattern(
bits: &<AnimationReplyType as CheckedBitPattern>::Bits
) -> bool
fn is_valid_bit_pattern(
bits: &<AnimationReplyType as CheckedBitPattern>::Bits
) -> bool
If this function returns true, then it must be valid to reinterpret bits
as &Self
. Read more
sourceimpl Clone for AnimationReplyType
impl Clone for AnimationReplyType
sourcefn clone(&self) -> AnimationReplyType
fn clone(&self) -> AnimationReplyType
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for AnimationReplyType
impl Debug for AnimationReplyType
sourceimpl Hash for AnimationReplyType
impl Hash for AnimationReplyType
sourceimpl PartialEq<AnimationReplyType> for AnimationReplyType
impl PartialEq<AnimationReplyType> for AnimationReplyType
sourcefn eq(&self, other: &AnimationReplyType) -> bool
fn eq(&self, other: &AnimationReplyType) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourceimpl TryFrom<u32> for AnimationReplyType
impl TryFrom<u32> for AnimationReplyType
type Error = TryFromPrimitiveError<AnimationReplyType>
type Error = TryFromPrimitiveError<AnimationReplyType>
The type returned in the event of a conversion error.
sourcefn try_from(
number: u32
) -> Result<AnimationReplyType, TryFromPrimitiveError<AnimationReplyType>>
fn try_from(
number: u32
) -> Result<AnimationReplyType, TryFromPrimitiveError<AnimationReplyType>>
Performs the conversion.
sourceimpl TryFromPrimitive for AnimationReplyType
impl TryFromPrimitive for AnimationReplyType
type Primitive = u32
const NAME: &'static str = "AnimationReplyType"
fn try_from_primitive(
number: <AnimationReplyType as TryFromPrimitive>::Primitive
) -> Result<AnimationReplyType, TryFromPrimitiveError<AnimationReplyType>>
impl Copy for AnimationReplyType
impl Eq for AnimationReplyType
impl NoUninit for AnimationReplyType
impl StructuralEq for AnimationReplyType
impl StructuralPartialEq for AnimationReplyType
Auto Trait Implementations
impl RefUnwindSafe for AnimationReplyType
impl Send for AnimationReplyType
impl Sync for AnimationReplyType
impl Unpin for AnimationReplyType
impl UnwindSafe for AnimationReplyType
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more