//! OS HID hotplug events.
pubusecrate::backend::{HotplugEvent, HotplugStream};usesuper::InventoryError;usecrate::backend::HidBackend;/// Subscribe to OS HID hotplug events through the shared process-wide backend.
pubfnwatch_hotplug(backend:&dyn HidBackend)->Result<HotplugStream, InventoryError>{Ok(backend.watch()?)}