extern structstd.os.uefi.device_path.DevicePath.Media.CdromDevicePath[src]

Fields

type: DevicePath.Type
subtype: Subtype
length: u16 align(1)
boot_entry: u32 align(1)
partition_start: u64 align(1)
partition_size: u64 align(1)

Source Code

Source code
pub const CdromDevicePath = extern struct {
    type: DevicePath.Type,
    subtype: Subtype,
    length: u16 align(1),
    boot_entry: u32 align(1),
    partition_start: u64 align(1),
    partition_size: u64 align(1),
}