pub enum InstanceCallResult {
Ok,
FunctionNotFound,
RuntimeError(ExecutorError),
VMHooksEarlyExit(VMHooksEarlyExit),
Breakpoint(BreakpointValue),
}Variants§
Ok
FunctionNotFound
RuntimeError(ExecutorError)
VMHooksEarlyExit(VMHooksEarlyExit)
Breakpoint(BreakpointValue)
Auto Trait Implementations§
impl !RefUnwindSafe for InstanceCallResult
impl !Send for InstanceCallResult
impl !Sync for InstanceCallResult
impl !UnwindSafe for InstanceCallResult
impl Freeze for InstanceCallResult
impl Unpin for InstanceCallResult
impl UnsafeUnpin for InstanceCallResult
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