Crate enumerable

source ·
Expand description

Enumerate all possible values of a type.

Implementing the Enumerable trait or derive it automatically for your types allows you to enumerate all possible values of that type. This is useful for testing, fuzzing, and other applications.

See documentation for trait Enumerable for technical details.

Structs§

Traits§

  • Enumerable is a trait for types that can have their possible values enumerated.

Derive Macros§

  • Derives the Enumerable trait for an enum or struct.