revm_specification::hardfork

Trait Spec

Source
pub trait Spec: Sized + 'static {
    const SPEC_ID: SpecId;

    // Provided method
    fn enabled(spec_id: SpecId) -> bool { ... }
}

Required Associated Constants§

Source

const SPEC_ID: SpecId

The specification ID.

Provided Methods§

Source

fn enabled(spec_id: SpecId) -> bool

Returns true if the given specification ID is enabled in this spec.

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§