extern structstd.os.uefi.device_path.DevicePath.Hardware.MemoryMappedDevicePath[src]

Fields

type: DevicePath.Type
subtype: Subtype
length: u16 align(1)
memory_type: u32 align(1)
start_address: u64 align(1)
end_address: u64 align(1)

Source Code

Source code
pub const MemoryMappedDevicePath = extern struct {
    type: DevicePath.Type,
    subtype: Subtype,
    length: u16 align(1),
    memory_type: u32 align(1),
    start_address: u64 align(1),
    end_address: u64 align(1),
}