pub type Hid = UsbId<HID_TAG, u8>;Expand description
Represents a HID descriptor type in the USB database.
use usb_ids::{Hid, FromId};
let hid = Hid::from_id(0x22).unwrap();
assert_eq!(hid.name(), "Report");Aliased Type§
pub struct Hid { /* private fields */ }