Trait ExecutorService

Source
pub trait ExecutorService: ExecutorLastError {
    // Required method
    fn new_executor(
        &self,
        vm_hooks_builder: Box<dyn VMHooksLegacy>,
    ) -> Result<Box<dyn ExecutorLegacy>, ExecutorError>;
}

Required Methods§

Source

fn new_executor( &self, vm_hooks_builder: Box<dyn VMHooksLegacy>, ) -> Result<Box<dyn ExecutorLegacy>, ExecutorError>

Creates a new VM executor.

Implementors§