#exhaustive #brute-force #iterator #enums #macro-derive #enumeration #values

no-std exhaust

Trait and derive macro for working with all possible values of a type (exhaustive enumeration)

5 releases

0.2.1 Sep 26, 2024
0.2.0 Sep 19, 2024
0.1.2 Sep 18, 2024
0.1.1 Apr 10, 2023
0.1.0 Feb 15, 2022

#240 in Rust patterns

Download history 66/week @ 2024-07-29 115/week @ 2024-08-05 123/week @ 2024-08-12 118/week @ 2024-08-19 89/week @ 2024-08-26 149/week @ 2024-09-02 64/week @ 2024-09-09 443/week @ 2024-09-16 333/week @ 2024-09-23 127/week @ 2024-09-30 73/week @ 2024-10-07 191/week @ 2024-10-14 588/week @ 2024-10-21 590/week @ 2024-10-28 626/week @ 2024-11-04 803/week @ 2024-11-11

2,659 downloads per month
Used in 9 crates (4 directly)

MIT/Apache

54KB
961 lines

Exhaust(ive iteration for Rust)

exhaust is a Rust library which provides the Exhaust trait, which can be used to iterate over all possible values of a type that implements it. Implementations are provided for standard library types, and derive macros are available to allow easy implementation for user-defined types.

Exhaustive iteration may be useful for exhaustive testing, working with enums, and solving constraints by brute-force search.

exhaust is no_std compatible with default features disabled. The alloc and std features add implementations for the corresponding standard library crates.

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Dependencies

~0.7–1.1MB
~25K SLoC