Skip to main content

FromEvmHalt

Trait FromEvmHalt 

Source
pub trait FromEvmHalt<Halt> {
    // Required method
    fn from_evm_halt(halt: Halt, gas_limit: u64) -> Self;
}
Available on crate feature rpc only.
Expand description

Helper trait to convert from revm errors.

Required Methods§

Source

fn from_evm_halt(halt: Halt, gas_limit: u64) -> Self

Converts from EVM halt to this type.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§