mouse-rs 0.4.0

Library to control your mouse via rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use std::fmt;

pub mod keys;

pub struct Point {
    pub x: usize,
    pub y: usize,
}

impl fmt::Debug for Point {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "({}, {})", self.x, self.y)
    }
}