pub struct ExecutableAnonymousMemoryMap { /* private fields */ }
Expand description

Represents an executable memory map that can be used to generate program code into.

Implementations

Create a new instance.

length is rounded up to the nearest power of two, and is floored at the smallest page size (4Kb).

On Linux, allocate_in_first_2Gb should ideally be true.

On Linux, there are historic bugs in mlock which may require ignore_mlock_failure to be true.

Memory is created using an anonymous, shared mmap with no access rights (not even read) which is then locked (mlock’d).

Get an assembler to this anonymous map.

Trait Implementations

Formats the value using the given formatter. Read more
Executes the destructor for this type. Read more

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.