pub trait ExecutorProvider<Block: BlockT> {
    type Executor: CallExecutor<Block>;

    // Required methods
    fn executor(&self) -> &Self::Executor;
    fn execution_extensions(&self) -> &ExecutionExtensions<Block>;
}
Expand description

Executor Provider

Required Associated Types§

source

type Executor: CallExecutor<Block>

executor instance

Required Methods§

source

fn executor(&self) -> &Self::Executor

Get call executor reference.

source

fn execution_extensions(&self) -> &ExecutionExtensions<Block>

Get a reference to the execution extensions.

Implementors§