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.4"
Example:
```rust use enum2str::EnumStr;
enum Object { Generic(String),
#[enum2str("Color: {}. Shape: {}.")]
Complex(Color, Shape),
}
enum Color { Green,
#[enum2str("Burgundy")]
Red,
}
enum Shape { #[enum2str("Circle with radius: {}")] Circle(u8), }
fn unittostring() { asserteq!(Color::Green.tostring(), "Green"); }
fn unitoverridestring() { asserteq!(Color::Red.tostring(), "Burgundy"); }
fn unnamedtostring() { asserteq!(Object::Generic("Hello!".tostring()).to_string(), "Hello!"); }
fn nestedtostring() { asserteq!( Object::Complex(Color::Green, Shape::Circle(2)).tostring(), "Color: Green. Shape: Circle with radius: 2." ); }
fn unittemplate() { asserteq!(Color::Green.template(), "Green"); }
fn unitoverridetemplate() { assert_eq!(Color::Red.template(), "Burgundy"); }
fn unnamedtemplate() { asserteq!(Shape::Circle(2).template(), "Circle with radius: {}"); }
fn nestedtemplate() { asserteq!( Object::Complex(Color::Green, Shape::Circle(2)).template(), "Color: {}. Shape: {}." ); } ```