extern structstd.os.uefi.device_path.DevicePath.Messaging.UsbClassDevicePath[src]

Fields

type: DevicePath.Type
subtype: Subtype
length: u16 align(1)
vendor_id: u16 align(1)
product_id: u16 align(1)
device_class: u8
device_subclass: u8
device_protocol: u8

Source Code

Source code
pub const UsbClassDevicePath = extern struct {
    type: DevicePath.Type,
    subtype: Subtype,
    length: u16 align(1),
    vendor_id: u16 align(1),
    product_id: u16 align(1),
    device_class: u8,
    device_subclass: u8,
    device_protocol: u8,
}