extendable-data

A rust macro that allows you to specify data that can be "extended" or inherited from. With data, I mean specifically enum, struct and union.

Why not composition/traits/some other method

This project started because I was using the very nice logos library and I wanted to define 2 lexers with some of the same base tokens, but extended. I could not find a proper way to do this that was not simply copy-pasting the parts of the enum that I needed, so I set about bodging it with macro abuse. I then extended the approach I used for enums to also support structs and unions.

How to Use

Simply, define the base enum (A) that you want to use. Then add the #[extendable_data] attribute to it. This will automatically generate a new macro called extend_from_A (or you can specify a name in the attribute arguments). Now, use this new macro for the extended enum B.

Example

```rust use extendabledata::extendabledata;

[extendableenum(extenda)]

enum A { One, Two, Three } `` In a crate (we'll useXhere) that hasproc-macro` set to true, then:

```rust use X::extend_a;

[extend_a]

enum B { Four, Five, Six }

fn main() { let e: B ...; ... match e { B::One => ..., B::Four => ..., } } ```

Any attributes and generics used in the definitions for enums A and B are combined and copied over. For the name and visibility, only those of B are used and are directly copied over.

Structs

As opposed to enums and unions, not all types of structs make sense to combine together. As such, the following design decisions were made:

Technically you could allow the combining of named and unnamed structs, or have the parent matter more when combining with unit structs, but the former would promote even more ugly coding habits than this library already does, and the latter seemed a less common use-case.