enum_tags_traits/
lib.rs

1/// A trait that is automatically implemented for any enum type with the attribute `#[derive(Tag)]`.
2pub trait TaggedEnum {
3	type Tag;
4	fn tag(&self) -> Self::Tag;
5}