Trait solana_program_runtime::invoke_context::Executor  [−][src]
pub trait Executor: Debug + Send + Sync {
    fn execute<'a, 'b>(
        &self, 
        first_instruction_account: usize, 
        instruction_data: &[u8], 
        invoke_context: &'a mut InvokeContext<'b>, 
        use_jit: bool
    ) -> Result<(), InstructionError>;
}Expand description
Program executor
