pub struct InstructionHandlers;Expand description
Unified instruction handler that provides access to all instruction handlers
Implementations§
Source§impl InstructionHandlers
impl InstructionHandlers
Sourcepub fn arithmetic() -> &'static ArithmeticHandler
pub fn arithmetic() -> &'static ArithmeticHandler
Get a reference to the arithmetic handler
Sourcepub fn comparison() -> &'static ComparisonHandler
pub fn comparison() -> &'static ComparisonHandler
Get a reference to the comparison handler
Sourcepub fn control_flow() -> &'static ControlFlowHandler
pub fn control_flow() -> &'static ControlFlowHandler
Get a reference to the control flow handler
Sourcepub fn stack_ops() -> &'static StackOpsHandler
pub fn stack_ops() -> &'static StackOpsHandler
Get a reference to the stack operations handler
Sourcepub fn heap_ops() -> &'static HeapOpsHandler
pub fn heap_ops() -> &'static HeapOpsHandler
Get a reference to the heap operations handler
Sourcepub fn builtin_calls() -> &'static BuiltinCallsHandler
pub fn builtin_calls() -> &'static BuiltinCallsHandler
Get a reference to the builtin calls handler
Auto Trait Implementations§
impl Freeze for InstructionHandlers
impl RefUnwindSafe for InstructionHandlers
impl Send for InstructionHandlers
impl Sync for InstructionHandlers
impl Unpin for InstructionHandlers
impl UnwindSafe for InstructionHandlers
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