aboutsummaryrefslogtreecommitdiff
path: root/hid/examples/list.rs
diff options
context:
space:
mode:
Diffstat (limited to 'hid/examples/list.rs')
-rw-r--r--hid/examples/list.rs24
1 files changed, 0 insertions, 24 deletions
diff --git a/hid/examples/list.rs b/hid/examples/list.rs
deleted file mode 100644
index da24bcb..0000000
--- a/hid/examples/list.rs
+++ /dev/null
@@ -1,24 +0,0 @@
-extern crate hid;
-
-fn main() {
- let hid = hid::init().unwrap();
-
- for device in hid.devices() {
- print!("{} ", device.path().to_str().unwrap());
- print!("ID {:x}:{:x} ", device.vendor_id(), device.product_id());
-
- if let Some(name) = device.manufacturer_string() {
- print!("{} ", name);
- }
-
- if let Some(name) = device.product_string() {
- print!("{} ", name);
- }
-
- if let Some(name) = device.serial_number() {
- print!("{} ", name);
- }
-
- println!();
- }
-}