pub trait Spec: Sized {
    const SPEC_ID: SpecId;

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

Required Associated Constants§

Provided Methods§

source

fn enabled(spec_id: SpecId) -> bool

Implementors§