pub trait Executor: Debug + Send + Sync {
    fn execute(
        &self,
        first_instruction_account: usize,
        invoke_context: &mut InvokeContext<'_>
    ) -> Result<(), InstructionError>; }
Expand description

Program executor

Required Methods

Execute the program

Implementors