pub trait UsbAllocatable<'a, B: UsbBus> {
type Allocated;
// Required method
fn allocate(self, usb_alloc: &'a UsbBusAllocator<B>) -> Self::Allocated;
}pub trait UsbAllocatable<'a, B: UsbBus> {
type Allocated;
// Required method
fn allocate(self, usb_alloc: &'a UsbBusAllocator<B>) -> Self::Allocated;
}