pub enum TweenStatus {
Running,
Completed,
Stopped,
Delayed,
}Expand description
Status of a tween.
Variants§
Running
Still running.
Completed
Completed successfully.
Stopped
Manually stopped.
Delayed
Waiting for delay before starting.
Trait Implementations§
Source§impl Clone for TweenStatus
impl Clone for TweenStatus
Source§fn clone(&self) -> TweenStatus
fn clone(&self) -> TweenStatus
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 TweenStatus
Source§impl Debug for TweenStatus
impl Debug for TweenStatus
impl Eq for TweenStatus
Source§impl PartialEq for TweenStatus
impl PartialEq for TweenStatus
impl StructuralPartialEq for TweenStatus
Auto Trait Implementations§
impl Freeze for TweenStatus
impl RefUnwindSafe for TweenStatus
impl Send for TweenStatus
impl Sync for TweenStatus
impl Unpin for TweenStatus
impl UnsafeUnpin for TweenStatus
impl UnwindSafe for TweenStatus
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