Struct libopencm3_sys::usb_interface_descriptor[][src]

#[repr(C, packed)]
pub struct usb_interface_descriptor { pub bLength: u8, pub bDescriptorType: u8, pub bInterfaceNumber: u8, pub bAlternateSetting: u8, pub bNumEndpoints: u8, pub bInterfaceClass: u8, pub bInterfaceSubClass: u8, pub bInterfaceProtocol: u8, pub iInterface: u8, pub endpoint: *const usb_endpoint_descriptor, pub extra: *const c_void, pub extralen: c_int, }

Fields

Trait Implementations

impl Debug for usb_interface_descriptor
[src]

Formats the value using the given formatter. Read more

impl Copy for usb_interface_descriptor
[src]

impl Clone for usb_interface_descriptor
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations