iohidmanager 0.10.1

Safe Rust bindings for Apple's IOKit HID — enumerate, inspect, and subscribe to HID devices on macOS
Documentation
1
2
3
4
5
6
7
use iohidmanager::service_plugin::ALL_SERVICE_PLUGIN_UUIDS;

fn main() {
    for uuid in ALL_SERVICE_PLUGIN_UUIDS {
        println!("{:?}: {}", uuid, uuid.hyphenated());
    }
}