Enum ark_api::world::AnimationReply
source · #[repr(u32)]pub enum AnimationReply {
AnimationFinished,
AnimationCancelled,
}Variants§
Trait Implementations§
source§impl 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.source§fn 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.source§impl Clone for AnimationReplyType
impl Clone for AnimationReplyType
source§fn clone(&self) -> AnimationReplyType
fn clone(&self) -> AnimationReplyType
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 AnimationReplyType
impl Debug for AnimationReplyType
source§impl Hash for AnimationReplyType
impl Hash for AnimationReplyType
source§impl PartialEq<AnimationReplyType> for AnimationReplyType
impl PartialEq<AnimationReplyType> for AnimationReplyType
source§fn 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 ==.source§impl 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.
source§fn try_from(
number: u32
) -> Result<AnimationReplyType, TryFromPrimitiveError<AnimationReplyType>>
fn try_from( number: u32 ) -> Result<AnimationReplyType, TryFromPrimitiveError<AnimationReplyType>>
Performs the conversion.
source§impl 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§
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