extern structstd.os.uefi.tables.MemoryDescriptor[src]

Fields

type: MemoryType
physical_start: u64
virtual_start: u64
number_of_pages: u64
attribute: MemoryDescriptorAttribute

Source Code

Source code
pub const MemoryDescriptor = extern struct {
    type: MemoryType,
    physical_start: u64,
    virtual_start: u64,
    number_of_pages: u64,
    attribute: MemoryDescriptorAttribute,
}