usbw 0.0.2

basic USB driver. So far just a wrapper for `rusb`. Planning on wrapping `libusb` later
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#[macro_use]
pub mod error;
pub mod async_device;
pub mod asyncs;
pub mod buffer;
pub mod config_descriptor;
pub mod context;
pub mod device;
pub mod device_descriptor;
pub mod device_handle;
pub mod dma;
pub mod endpoint_descriptor;
pub mod hotplug;
pub mod interface_descriptor;
pub mod interfaces;
pub mod speed;
pub mod transfer;
pub mod version;