pub struct MouseStep {
pub at: Duration,
pub point: Point,
pub kind: MouseStepKind,
pub button: MouseButton,
}Expand description
One mouse event in a synthesized sequence.
Fields§
§at: DurationTime since the start of the sequence.
point: PointCoordinates at this instant.
kind: MouseStepKindEvent kind.
Which button (only meaningful for Down / Up / Click).
Trait Implementations§
impl Copy for MouseStep
impl StructuralPartialEq for MouseStep
Auto Trait Implementations§
impl Freeze for MouseStep
impl RefUnwindSafe for MouseStep
impl Send for MouseStep
impl Sync for MouseStep
impl Unpin for MouseStep
impl UnsafeUnpin for MouseStep
impl UnwindSafe for MouseStep
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