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

#971 in Rust patterns

Download history 64/week @ 2023-12-18 14/week @ 2024-01-01 65/week @ 2024-01-08 24/week @ 2024-01-15 5/week @ 2024-02-12 8/week @ 2024-02-19 126/week @ 2024-02-26 30/week @ 2024-03-04 22/week @ 2024-03-11 18/week @ 2024-03-18 13/week @ 2024-03-25 230/week @ 2024-04-01

287 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