2017-02-12 07:46:32 +01:00
|
|
|
# Strum
|
|
|
|
|
2020-09-17 20:21:41 +02:00
|
|
|
[![Build Status](https://travis-ci.com/Peternator7/strum.svg?branch=master)](https://travis-ci.com/Peternator7/strum)
|
|
|
|
[![Build status](https://ci.appveyor.com/api/projects/status/ji4f6n2m5lvu11xt?svg=true)](https://ci.appveyor.com/project/Peternator7/strum)
|
2017-02-12 08:00:43 +01:00
|
|
|
[![Latest Version](https://img.shields.io/crates/v/strum.svg)](https://crates.io/crates/strum)
|
2017-02-12 08:03:42 +01:00
|
|
|
[![Rust Documentation](https://docs.rs/strum/badge.svg)](https://docs.rs/strum)
|
2020-09-17 20:21:41 +02:00
|
|
|
![Crates.io](https://img.shields.io/crates/l/strum)
|
|
|
|
![Crates.io](https://img.shields.io/crates/d/strum)
|
2017-02-12 08:00:43 +01:00
|
|
|
|
2019-09-18 20:24:14 +02:00
|
|
|
Strum is a set of macros and traits for working with enums and strings easier in Rust.
|
2017-02-12 07:46:32 +01:00
|
|
|
|
2019-03-04 08:27:59 +01:00
|
|
|
# Compatibility
|
|
|
|
|
2021-06-02 03:32:56 +02:00
|
|
|
Strum is currently with versions of rustc >= 1.32.0. Pull Requests that improve compatibility with older
|
|
|
|
versions are welcome. The project goal is to support a rust version for at least 2 years after release
|
|
|
|
and even longer is preferred since this project changes slowly.
|
2019-03-04 08:27:59 +01:00
|
|
|
|
2017-02-12 07:46:32 +01:00
|
|
|
# Including Strum in Your Project
|
|
|
|
|
|
|
|
Import strum and strum_macros into your project by adding the following lines to your
|
|
|
|
Cargo.toml. Strum_macros contains the macros needed to derive all the traits in Strum.
|
|
|
|
|
|
|
|
```toml
|
|
|
|
[dependencies]
|
2021-11-17 07:24:17 +01:00
|
|
|
strum = "0.23"
|
|
|
|
strum_macros = "0.23"
|
2020-10-07 07:52:12 +02:00
|
|
|
|
|
|
|
# You can also use the "derive" feature, and import the macros directly from "strum"
|
2021-11-17 07:24:17 +01:00
|
|
|
# strum = { version = "0.23", features = ["derive"] }
|
2017-02-12 07:46:32 +01:00
|
|
|
```
|
|
|
|
|
2019-09-18 20:24:14 +02:00
|
|
|
# Strum Macros
|
|
|
|
|
|
|
|
Strum has implemented the following macros:
|
|
|
|
|
|
|
|
| Macro | Description |
|
|
|
|
| --- | ----------- |
|
2021-11-17 07:24:17 +01:00
|
|
|
| [EnumString] | Converts strings to enum variants based on their name. |
|
2019-09-18 20:24:14 +02:00
|
|
|
| [Display] | Converts enum variants to strings |
|
2021-11-17 07:24:17 +01:00
|
|
|
| [FromRepr] | Convert from an integer to an enum. |
|
2021-10-14 18:12:09 +02:00
|
|
|
| [AsRefStr] | Implement `AsRef<str>` for `MyEnum` |
|
2019-09-18 20:24:14 +02:00
|
|
|
| [IntoStaticStr] | Implements `From<MyEnum> for &'static str` on an enum |
|
2019-12-20 00:18:17 +01:00
|
|
|
| [EnumVariantNames] | Adds an associated `VARIANTS` constant which is an array of discriminant names |
|
2019-09-18 20:24:14 +02:00
|
|
|
| [EnumIter] | Creates a new type that iterates of the variants of an enum. |
|
|
|
|
| [EnumProperty] | Add custom properties to enum variants. |
|
|
|
|
| [EnumMessage] | Add a verbose message to an enum variant. |
|
|
|
|
| [EnumDiscriminants] | Generate a new type with only the discriminant names. |
|
2019-12-12 19:54:32 +01:00
|
|
|
| [EnumCount] | Add a constant `usize` equal to the number of variants. |
|
2019-09-18 20:24:14 +02:00
|
|
|
|
2017-02-16 06:16:16 +01:00
|
|
|
# Contributing
|
|
|
|
|
2017-06-29 22:51:50 +02:00
|
|
|
Thanks for your interest in contributing. The project is divided into 3 parts, the traits are in the
|
|
|
|
`/strum` folder. The procedural macros are in the `/strum_macros` folder, and the integration tests are
|
|
|
|
in `/strum_tests`. If you are adding additional features to `strum` or `strum_macros`, you should make sure
|
2017-02-23 09:09:57 +01:00
|
|
|
to run the tests and add new integration tests to make sure the features work as expected.
|
2017-02-16 06:16:16 +01:00
|
|
|
|
|
|
|
# Debugging
|
|
|
|
|
|
|
|
To see the generated code, set the STRUM_DEBUG environment variable before compiling your code.
|
|
|
|
`STRUM_DEBUG=1` will dump all of the generated code for every type. `STRUM_DEBUG=YourType` will
|
|
|
|
only dump the code generated on a type named `YourType`.
|
|
|
|
|
2017-02-12 07:46:32 +01:00
|
|
|
# Name
|
|
|
|
|
|
|
|
Strum is short for STRing enUM because it's a library for augmenting enums with additional
|
|
|
|
information through strings.
|
|
|
|
|
2017-02-12 21:52:51 +01:00
|
|
|
Strumming is also a very whimsical motion, much like writing Rust code.
|
2019-09-18 20:24:14 +02:00
|
|
|
|
|
|
|
[Macro-Renames]: https://github.com/Peternator7/strum/wiki/Macro-Renames
|
2021-11-17 07:24:17 +01:00
|
|
|
[EnumString]: https://docs.rs/strum_macros/0.23/strum_macros/derive.EnumString.html
|
|
|
|
[Display]: https://docs.rs/strum_macros/0.23/strum_macros/derive.Display.html
|
|
|
|
[AsRefStr]: https://docs.rs/strum_macros/0.23/strum_macros/derive.AsRefStr.html
|
|
|
|
[IntoStaticStr]: https://docs.rs/strum_macros/0.23/strum_macros/derive.IntoStaticStr.html
|
|
|
|
[EnumVariantNames]: https://docs.rs/strum_macros/0.23/strum_macros/derive.EnumVariantNames.html
|
|
|
|
[EnumIter]: https://docs.rs/strum_macros/0.23/strum_macros/derive.EnumIter.html
|
|
|
|
[EnumProperty]: https://docs.rs/strum_macros/0.23/strum_macros/derive.EnumProperty.html
|
|
|
|
[EnumMessage]: https://docs.rs/strum_macros/0.23/strum_macros/derive.EnumMessage.html
|
|
|
|
[EnumDiscriminants]: https://docs.rs/strum_macros/0.23/strum_macros/derive.EnumDiscriminants.html
|
|
|
|
[EnumCount]: https://docs.rs/strum_macros/0.23/strum_macros/derive.EnumCount.html
|
|
|
|
[FromRepr]: https://docs.rs/strum_macros/0.23/strum_macros/derive.FromRepr.html
|