pub trait ExecutorService: ExecutorLastError {
// Required method
fn new_executor(
&self,
vm_hooks_builder: Box<dyn VMHooksLegacy>,
) -> Result<Box<dyn ExecutorLegacy>, ExecutorError>;
}
Required Methods§
Sourcefn new_executor(
&self,
vm_hooks_builder: Box<dyn VMHooksLegacy>,
) -> Result<Box<dyn ExecutorLegacy>, ExecutorError>
fn new_executor( &self, vm_hooks_builder: Box<dyn VMHooksLegacy>, ) -> Result<Box<dyn ExecutorLegacy>, ExecutorError>
Creates a new VM executor.