pub enum DeltaAction {
Up,
Down,
Stop,
}Variants§
Up
Increases the target value.
Down
Decreases the target value.
Stop
Halts the target value if it is in the process of animating.
Trait Implementations§
Source§impl Debug for DeltaAction
impl Debug for DeltaAction
Auto Trait Implementations§
impl Freeze for DeltaAction
impl RefUnwindSafe for DeltaAction
impl Send for DeltaAction
impl Sync for DeltaAction
impl Unpin for DeltaAction
impl UnsafeUnpin for DeltaAction
impl UnwindSafe for DeltaAction
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