12 releases

0.4.3 Apr 4, 2021
0.4.2 Feb 18, 2021
0.4.1 Nov 2, 2020
0.3.1 Jun 28, 2020
0.1.0 Nov 21, 2018

#1048 in Rust patterns

Download history 54/week @ 2024-01-04 46/week @ 2024-01-11 2/week @ 2024-01-18 1/week @ 2024-02-08 8/week @ 2024-02-15 92/week @ 2024-02-22 45/week @ 2024-02-29 34/week @ 2024-03-07 19/week @ 2024-03-14 16/week @ 2024-03-21 25/week @ 2024-03-28 23/week @ 2024-04-04 14/week @ 2024-04-11 7/week @ 2024-04-18

69 downloads per month
Used in 5 crates (3 directly)

MIT license

42KB
789 lines

Motivation

Simulating ad-hoc enums which

  1. can be converted between enums that share a common set of variant types.

  2. can implement traits that haven been implemented by all variants.

Usage

Add this crate to Cargo.toml

Cargo.toml:

enumx = "0.4"

Add this if you want to support up to 32 variants:

features = ["enum32"]

src/lib.rs:

use enumx::export::*;

If you want to use predefined enum types:

use enumx::predefined::*;

Features

  • "union types" simulation, aka "enum exchange".

  • summaries into an enum, the returned values of different types by functions that returns impl Trait.

  • macros to help implementing traits for enums the variants of which have all implemented the traits.

Documentation

See the enumx book for more.

License

Licensed under MIT.


lib.rs:

enumx = ENUM eXtensions.

See the enumx book for more.

Dependencies

~2.5MB
~49K SLoC