pub trait AdapterHardware {
// Required methods
fn write_interrupt(&mut self, data: &[u8]);
fn read_interrupt(&mut self, data: &mut [u8]);
}
Expand description
A trait representing a struct which provides access to a limited set of USB operations