pub enum MegakernelExecutionMode {
Interpreter,
Jit,
}Expand description
Interpreter/JIT route selected by the launch policy.
Variants§
Interpreter
Use the generic opcode interpreter.
Jit
Use a fused payload processor for hot windows or opcodes.
Trait Implementations§
Source§impl Clone for MegakernelExecutionMode
impl Clone for MegakernelExecutionMode
Source§fn clone(&self) -> MegakernelExecutionMode
fn clone(&self) -> MegakernelExecutionMode
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for MegakernelExecutionMode
impl Debug for MegakernelExecutionMode
Source§impl Hash for MegakernelExecutionMode
impl Hash for MegakernelExecutionMode
Source§impl PartialEq for MegakernelExecutionMode
impl PartialEq for MegakernelExecutionMode
Source§fn eq(&self, other: &MegakernelExecutionMode) -> bool
fn eq(&self, other: &MegakernelExecutionMode) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for MegakernelExecutionMode
impl Eq for MegakernelExecutionMode
impl StructuralPartialEq for MegakernelExecutionMode
Auto Trait Implementations§
impl Freeze for MegakernelExecutionMode
impl RefUnwindSafe for MegakernelExecutionMode
impl Send for MegakernelExecutionMode
impl Sync for MegakernelExecutionMode
impl Unpin for MegakernelExecutionMode
impl UnsafeUnpin for MegakernelExecutionMode
impl UnwindSafe for MegakernelExecutionMode
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.