usbd_human_interface_device/
prelude.rs

1//! Prelude for using USB HID devices
2//!
3//! The purpose of this module is to alleviate imports of structs and enums
4//! required to instance USB HID devices:
5//!
6//! ```
7//! # #![allow(unused_imports)]
8//! use usbd_human_interface_device::prelude::*;
9//! ```
10
11pub use crate::usb_class::{UsbHidClass, UsbHidClassBuilder};
12pub use crate::UsbHidError;