rdxusb/
lib.rs

1pub mod host;
2/// Integrated tokio-driven event loop that handles hotplug and polling logic automatically.
3/// This is the backend used for the C API.
4#[cfg(feature = "event-loop")]
5pub mod event_loop;
6/// An abstracted C API used for everything else.
7#[cfg(feature = "c-api")]
8pub mod c_api;
9
10pub use rdxusb_protocol::{RdxUsbPacket, MESSAGE_ARB_ID_DEVICE, MESSAGE_ARB_ID_EXT, MESSAGE_ARB_ID_RTR};