stickup 0.1.2

A modular input device abstraction layer with HID and virtual device support.
Documentation
1
2
3
4
5
pub trait Device {
    fn poll(&mut self) -> Vec<crate::InputEvent>;
    fn name(&self) -> &str;
    fn id(&self) -> &str;
}