Trait ExecutorBuilder

pub trait ExecutorBuilder<Node>: Send
where Node: FullNodeTypes,
{ type EVM: ConfigureEvm<Primitives = <<Node as FullNodeTypes>::Types as NodeTypes>::Primitives> + 'static; // Required method fn build_evm( self, ctx: &BuilderContext<Node>, ) -> impl Future<Output = Result<Self::EVM, Report>> + Send; }
Expand description

A type that knows how to build the executor types.

Required Associated Types§

type EVM: ConfigureEvm<Primitives = <<Node as FullNodeTypes>::Types as NodeTypes>::Primitives> + 'static

The EVM config to use.

This provides the node with the necessary configuration to configure an EVM.

Required Methods§

fn build_evm( self, ctx: &BuilderContext<Node>, ) -> impl Future<Output = Result<Self::EVM, Report>> + Send

Creates the EVM config.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

§

impl<Types, Node> ExecutorBuilder<Node> for EthereumExecutorBuilder
where Types: NodeTypes<ChainSpec = ChainSpec, Primitives = EthPrimitives>, Node: FullNodeTypes<Types = Types>,

§

type EVM = EthEvmConfig

§

async fn build_evm( self, ctx: &BuilderContext<Node>, ) -> Result<<EthereumExecutorBuilder as ExecutorBuilder<Node>>::EVM, Report>

Implementors§

§

impl<Node, F, Fut, EVM> ExecutorBuilder<Node> for F
where Node: FullNodeTypes, EVM: ConfigureEvm<Primitives = <<Node as FullNodeTypes>::Types as NodeTypes>::Primitives> + 'static, F: FnOnce(&BuilderContext<Node>) -> Fut + Send, Fut: Future<Output = Result<EVM, Report>> + Send,

§

type EVM = EVM