enum2str is a rust derive macro that creates a Display impl for enums. This is useful for strongly typing composable sets of strings.
Add this to your Cargo.toml
:
toml
enum2str = "0.1.0"
Example:
```rust use enum2str::EnumStr;
enum Object { Simple,
#[enum2str("Color: {}. Shape: {}.")]
Complex(Color, Shape),
}
enum Color { Red, Green, SlateGray, }
enum Shape { Circle, }
fn main() -> Result<(), Box