pub enum JITMemoryKind {
Executable,
Writable,
ReadOnly,
}Expand description
The kind of memory allocation requested by a JITMemoryProvider.
Variants§
Executable
Allocate memory that will be executable once finalized.
Writable
Allocate writable memory.
ReadOnly
Allocate memory that will be read-only once finalized.
Auto Trait Implementations§
impl Freeze for JITMemoryKind
impl RefUnwindSafe for JITMemoryKind
impl Send for JITMemoryKind
impl Sync for JITMemoryKind
impl Unpin for JITMemoryKind
impl UnsafeUnpin for JITMemoryKind
impl UnwindSafe for JITMemoryKind
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more