Trait EnumCount

pub trait EnumCount {
    const COUNT: usize;
}
Expand description

A trait for capturing the number of variants in Enum. This trait can be autoderived by strum_macros.

Required Associated Constants§

const COUNT: usize

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.

Implementations on Foreign Types§

§

impl EnumCount for Chain

§

const COUNT: usize = 78usize

§

impl EnumCount for EthersCrate

§

const COUNT: usize = 10usize

§

impl EnumCount for Opcode

§

const COUNT: usize = 144usize

Implementors§