#[repr(u32)]pub enum AnimationUpdateMode {
Continuous = 0,
Discrete = 1,
Trigger = 2,
Capture = 3,
}Variants§
Trait Implementations§
Source§impl Clone for AnimationUpdateMode
impl Clone for AnimationUpdateMode
Source§fn clone(&self) -> AnimationUpdateMode
fn clone(&self) -> AnimationUpdateMode
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for AnimationUpdateMode
Source§impl Debug for AnimationUpdateMode
impl Debug for AnimationUpdateMode
impl Eq for AnimationUpdateMode
Source§impl Hash for AnimationUpdateMode
impl Hash for AnimationUpdateMode
Source§impl PartialEq for AnimationUpdateMode
impl PartialEq for AnimationUpdateMode
Source§fn eq(&self, other: &AnimationUpdateMode) -> bool
fn eq(&self, other: &AnimationUpdateMode) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for AnimationUpdateMode
Auto Trait Implementations§
impl Freeze for AnimationUpdateMode
impl RefUnwindSafe for AnimationUpdateMode
impl Send for AnimationUpdateMode
impl Sync for AnimationUpdateMode
impl Unpin for AnimationUpdateMode
impl UnsafeUnpin for AnimationUpdateMode
impl UnwindSafe for AnimationUpdateMode
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