pub enum MotionState {
Idle,
Running,
Paused,
Finished,
Canceled,
}Variants§
Trait Implementations§
Source§impl Clone for MotionState
impl Clone for MotionState
Source§fn clone(&self) -> MotionState
fn clone(&self) -> MotionState
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 MotionState
Source§impl Debug for MotionState
impl Debug for MotionState
Source§impl Default for MotionState
impl Default for MotionState
Source§fn default() -> MotionState
fn default() -> MotionState
Returns the “default value” for a type. Read more
impl Eq for MotionState
Source§impl PartialEq for MotionState
impl PartialEq for MotionState
impl StructuralPartialEq for MotionState
Auto Trait Implementations§
impl Freeze for MotionState
impl RefUnwindSafe for MotionState
impl Send for MotionState
impl Sync for MotionState
impl Unpin for MotionState
impl UnsafeUnpin for MotionState
impl UnwindSafe for MotionState
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