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 address of module in physical memory.

End address of module in physic memory.

Name of the module.

Trait Implementations

impl<'a> Debug for Module<'a>
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl<'a> Send for Module<'a>

impl<'a> Sync for Module<'a>