pub trait EvmTrError<EVM: EvmTr>:
From<InvalidTransaction>
+ From<InvalidHeader>
+ From<<<EVM::Context as ContextTr>::Db as Database>::Error>
+ From<ContextError<<<EVM::Context as ContextTr>::Db as Database>::Error>>
+ FromStringError { }
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.