Struct multiboot::Module [] [src]

pub struct Module<'a> {
    pub start: PAddr,
    pub end: PAddr,
    pub string: Option<&'a str>,
}

Information about a module in multiboot.

Fields

start

Start address of module in physical memory.

end

End address of module in physic memory.

string

Name of the module.

Trait Implementations

Derived Implementations

impl<'a> Debug for Module<'a>

fn fmt(&self, __arg_0: &mut Formatter) -> Result