Library that helps you to parse the multiboot information structure (mbi) from
Multiboot2-compliant bootloaders, like GRUB. It supports all tags from the specification
including full support for the sections of ELF-64. This library is `no_std` and can be
used in a Multiboot2-kernel.
usecrate::TagType;/// If the image has relocatable header tag, this tag contains the image's
/// base physical address.
#[derive(Debug)]#[repr(C)]pubstructImageLoadPhysAddr{typ: TagType,
size:u32,
load_base_addr:u32,
}implImageLoadPhysAddr{/// Returns the load base address.
pubfnload_base_addr(&self)->u32{self.load_base_addr
}}