#enums #variant #macro-derive #companion #generate #fields #specifying

enum-tags

A Derive-Macro library that generates a companion tag-enum for any enum so that variants can be referred to without specifying fields

1 unstable release

0.1.0 Feb 23, 2022

#2479 in Rust patterns

Download history 29/week @ 2024-01-11 24/week @ 2024-01-18 55/week @ 2024-01-25 26/week @ 2024-02-01 67/week @ 2024-02-08 102/week @ 2024-02-15 55/week @ 2024-02-22 37/week @ 2024-02-29 22/week @ 2024-03-07 13/week @ 2024-03-14 10/week @ 2024-03-21 27/week @ 2024-03-28 23/week @ 2024-04-04 19/week @ 2024-04-11 64/week @ 2024-04-18

134 downloads per month
Used in 2 crates

MIT license

5KB

enum-tags

A Derive-Macro library that generates a companion tag-enum for any enum so that variants can be referred to without specifying fields.

Usage

Add this to your Cargo.toml:

[dependencies]
enum-tags = "0.1.0"

Then derive [Tag] for any enum you want to generate a companion tag-enum for.

#[derive(Tag)]
enum MyEnum {
	A,
	B = 1024,
	C(char),
	D { x: i32, y: i32 },
}

The generated enum will look like this:

#[derive(Clone, Copy, Debug, PartialEq, Eq)]
enum MyEnumTag {
	A,
	B = 1024,
	C,
	D,
}

An impl for the TaggedEnum trait will also be generated to allow conversion from your enum type to the tag-enum. The generated impl will look like this:

impl ::enum_tags_traits::TaggedEnum for MyEnum {
	type Tag = MyEnumTag;
	fn tag(&self) -> Self::Tag {
		match *self {
			Self::A => Self::Tag::A,
			Self::B => Self::Tag::B,
			Self::C(_) => Self::Tag::C,
			Self::D { x: _, y: _ } => Self::Tag::D,
		}
	}
}

lib.rs:

Struct Test

use enum_tags::Tag;
#[derive(Tag)]
struct Bad {}

Union Test

use enum_tags::Tag;
#[derive(Tag)]
union Bad {}

Dependencies

~1.5MB
~33K SLoC