commit | b801fef61a8d809cc8318b1fe6ef0cbf0e536cae | [log] [tgz] |
---|---|---|
author | James Farrell <jamesfarrell@google.com> | Wed Aug 07 22:47:22 2024 +0000 |
committer | Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> | Wed Aug 07 22:47:22 2024 +0000 |
tree | dedd6b7c866f5d5a974547d4434bda971256a8fc | |
parent | 5de13018e3f8b0e35b2e48f6be008dda997747b3 [diff] | |
parent | 7a8bb421741743c7e32beecfd48bdc6c9975a58d [diff] |
Update Android.bp by running cargo_embargo am: 7a8bb42174 Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/strum_macros/+/3209311 Change-Id: Ic1e28e67aa606dd055f74a969da70b08c062b945 Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
Strum is a set of macros and traits for working with enums and strings easier in Rust.
Strum is currently compatible with versions of rustc >= 1.56.1. 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.
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.
[dependencies] strum = "0.25" strum_macros = "0.25" # You can also use the "derive" feature, and import the macros directly from "strum" # strum = { version = "0.25", features = ["derive"] }
Strum has implemented the following macros:
Macro | Description |
---|---|
EnumString | Converts strings to enum variants based on their name. |
Display | Converts enum variants to strings |
FromRepr | Convert from an integer to an enum. |
AsRefStr | Implement AsRef<str> for MyEnum |
IntoStaticStr | Implements From<MyEnum> for &'static str on an enum |
EnumVariantNames | Adds an associated VARIANTS constant which is an array of discriminant names |
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. |
EnumCount | Add a constant usize equal to the number of variants. |
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 to run the tests and add new integration tests to make sure the features work as expected.
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
.
Strum is short for STRing enUM because it's a library for augmenting enums with additional information through strings.
Strumming is also a very whimsical motion, much like writing Rust code.