pub struct MovementStep {
pub point: Point,
pub delay: Duration,
}Expand description
A single step in a mouse movement path.
Fields§
§point: PointThe point to move to.
delay: DurationDelay before dispatching the next step.
Trait Implementations§
Source§impl Clone for MovementStep
impl Clone for MovementStep
Source§fn clone(&self) -> MovementStep
fn clone(&self) -> MovementStep
Returns a duplicate 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 moreAuto Trait Implementations§
impl Freeze for MovementStep
impl RefUnwindSafe for MovementStep
impl Send for MovementStep
impl Sync for MovementStep
impl Unpin for MovementStep
impl UnsafeUnpin for MovementStep
impl UnwindSafe for MovementStep
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