pub enum AnimatorAction {
Animating {
redraw: bool,
},
None,
}
Variants§
Implementations§
Source§impl AnimatorAction
impl AnimatorAction
pub fn must_redraw(&self) -> bool
pub fn is_animating(&self) -> bool
Trait Implementations§
Source§impl Clone for AnimatorAction
impl Clone for AnimatorAction
Source§fn clone(&self) -> AnimatorAction
fn clone(&self) -> AnimatorAction
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 moreimpl Copy for AnimatorAction
Auto Trait Implementations§
impl Freeze for AnimatorAction
impl RefUnwindSafe for AnimatorAction
impl Send for AnimatorAction
impl Sync for AnimatorAction
impl Unpin for AnimatorAction
impl UnwindSafe for AnimatorAction
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