#[repr(C)]
pub struct StivaleMemoryMapTag { pub header: StivaleTagHeader, pub entries_len: u64, pub entry_array: [StivaleMemoryMapEntry], }

Fields

header: StivaleTagHeaderentries_len: u64

Total length of the memory map entries.

entry_array: [StivaleMemoryMapEntry]

The memory map entries.

Implementations

Return’s memory map entries pointer as a rust slice.

Safety

ptr must be a pointer to a properly initialized StivaleMemoryMapTag struct with mem_entry_count entries in the entry_array.

Returns an iterator over all the memory regions.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more