Trait ExecutableTx

pub trait ExecutableTx<E>:
    IntoTxEnv<<<E as BlockExecutor>::Evm as Evm>::Tx>
    + RecoveredTx<<E as BlockExecutor>::Transaction>
    + Copy
where E: BlockExecutor + ?Sized,
{ }
Expand description

Helper trait to encapsulate requirements for a type to be used as input for BlockExecutor.

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.

Implementors§

§

impl<E, T> ExecutableTx<E> for T