revm_wiring::evm_wiring

Trait HardforkTrait

Source
pub trait HardforkTrait:
    Clone
    + Copy
    + Default
    + PartialEq
    + Eq
    + Into<SpecId> { }
Expand description

The type that enumerates the chain’s hardforks.

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§

Source§

impl<HardforkT> HardforkTrait for HardforkT
where HardforkT: Clone + Copy + Default + PartialEq + Eq + Into<SpecId>,