A library that allows you to configure values specific to each variants of an enum.
Add this to your Cargo.toml
file :
toml
[dependencies]
custom_attrs = "1.2.2"
Then you can use the derive
attribute to use the library.
```rust use custom_attrs::CustomAttrs;
// all attributes declarations will be here.
enum Enum { // ... } ```
By default, an attribute declaration is composed of two parts : attribute's name and it's type.
```rust
```
Optionally, you can add more components.
You can set the visibility of the attribute. This will change the bility of the getter function.
```rust
enum Enum {} ```
By default, each attribute declared require a value to be set for variant. If this requirement is not set, this library will produce an r.
You can disable this behavior by making it optional, by writing type into an Option
, or by adding a default value behind the ibute declaration. See the example below.
```rust
enum Enum {} ```
```rust
enum Enum {} ```
To set a value for a variant, just add the name of the attribute owed by the value you want to assign it.
rust
enum Enum {
#[attr(name = 4)]
VariantA
}
If the attribute is optional, you don't have to wrap you value a Some
. custom_attrs
will do it for you. If you want the e to be None
, just put None
behind the value.
```rust enum Enum { #[attr(name = 4)] VariantA,
#[attr(name = None)]
VariantA,
} ```
```rust use custom_attrs::CustomAttrs;
// ...
// set the attributes
enum Enum { #[attr(a = 5)] #[attr(b = 3)] Variant1,
#[attr(a = 3)]
#[attr(c = "Hello again !")]
Variant2,
}
fn main() { let a = Enum::Variant1.get_a(); } ```
See the examples directory for more details.
Licensed under the MIT license.