pub struct DataPlacement {
    pub kernel: &'static str,
    pub processes: &'static str,
    pub shared: &'static str,
}
Expand description

Placement of static data and allocators.

Provide the name of the memory section used in the linker script.

Fields

kernel: &'static str

Static kernel data and kernel allocator.

Inaccessible to the user.

processes: &'static str

Static process data and allocator.

shared: &'static str

Shared memory section.

Typically placed in RAM.

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

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.