pub trait MouseMove {
// Required method
fn mouse_move(&self, dx: i32, dy: i32);
}Expand description
Represents a type that allows for sending mouse inputs
pub trait MouseMove {
// Required method
fn mouse_move(&self, dx: i32, dy: i32);
}Represents a type that allows for sending mouse inputs