Trait EvmTrError

pub trait EvmTrError<EVM>:
    From<InvalidTransaction>
    + From<InvalidHeader>
    + From<<<<EVM as EvmTr>::Context as ContextTr>::Db as Database>::Error>
    + From<ContextError<<<<EVM as EvmTr>::Context as ContextTr>::Db as Database>::Error>>
    + FromStringError
where EVM: EvmTr,
{ }
Expand description

Trait for errors that can occur during EVM execution.

This trait represents the minimal error requirements for EVM execution, ensuring that all necessary error types can be converted into the handler’s error type.

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<EVM, T> EvmTrError<EVM> for T