mirror of
https://github.com/danog/strum.git
synced 2024-12-04 02:17:56 +01:00
e6a9bf08c4
The default attribute on a tuple like variant now causes the to_string and display format to use the value of the tuple rather than the name of the variant. E.g. Color::Green("lime").to_string() will equal "lime" not "Green" Fixes: how to round trip Display and EnumString with default="true" #86 BREAKING CHANGE This changes how Display and ToString cause the following to renders: ```rust #[strum(default)] Green(String) ``` To maintain the previous behavior (use the variant name): ```rust #[strum(default, to_string("Green"))] Green(String) ```
97 lines
2.1 KiB
Rust
97 lines
2.1 KiB
Rust
#![allow(deprecated)]
|
|
|
|
use std::str::FromStr;
|
|
use std::string::ToString;
|
|
use strum::{EnumString, ToString};
|
|
|
|
#[derive(Debug, Eq, PartialEq, EnumString, ToString)]
|
|
enum Color {
|
|
#[strum(to_string = "RedRed")]
|
|
Red,
|
|
#[strum(serialize = "b", to_string = "blue")]
|
|
Blue { hue: usize },
|
|
#[strum(serialize = "y", serialize = "yellow")]
|
|
Yellow,
|
|
#[strum(default)]
|
|
Green(String),
|
|
}
|
|
|
|
#[test]
|
|
fn to_blue_string() {
|
|
assert_eq!(
|
|
String::from("blue"),
|
|
(Color::Blue { hue: 0 }).to_string().as_ref()
|
|
);
|
|
}
|
|
|
|
#[test]
|
|
fn to_yellow_string() {
|
|
assert_eq!(String::from("yellow"), (Color::Yellow).to_string().as_ref());
|
|
}
|
|
|
|
#[test]
|
|
fn to_red_string() {
|
|
assert_eq!(String::from("RedRed"), (Color::Red).to_string());
|
|
assert_eq!(
|
|
Color::Red,
|
|
Color::from_str((Color::Red).to_string().as_ref()).unwrap()
|
|
);
|
|
}
|
|
|
|
#[test]
|
|
fn to_green_string_with_default() {
|
|
assert_eq!(
|
|
String::from("lime"),
|
|
(Color::Green("lime".into())).to_string()
|
|
);
|
|
assert_eq!(
|
|
Color::Green("lime".into()),
|
|
Color::from_str("lime").unwrap()
|
|
);
|
|
}
|
|
|
|
#[derive(Debug, Eq, PartialEq, EnumString, ToString)]
|
|
enum ColorWithDefaultAndToString {
|
|
#[strum(default, to_string = "GreenGreen")]
|
|
Green(String),
|
|
}
|
|
|
|
#[test]
|
|
fn to_green_with_default_and_to_string() {
|
|
assert_eq!(
|
|
String::from("GreenGreen"),
|
|
(ColorWithDefaultAndToString::Green("lime".into())).to_string()
|
|
);
|
|
assert_eq!(
|
|
ColorWithDefaultAndToString::Green("lime".into()),
|
|
ColorWithDefaultAndToString::from_str("lime").unwrap()
|
|
);
|
|
}
|
|
|
|
#[derive(Debug, Eq, PartialEq, ToString)]
|
|
#[strum(serialize_all = "snake_case")]
|
|
enum Brightness {
|
|
DarkBlack,
|
|
Dim {
|
|
glow: usize,
|
|
},
|
|
#[strum(serialize = "bright")]
|
|
BrightWhite,
|
|
}
|
|
|
|
#[test]
|
|
fn brightness_to_string() {
|
|
assert_eq!(
|
|
String::from("dark_black"),
|
|
Brightness::DarkBlack.to_string().as_ref()
|
|
);
|
|
assert_eq!(
|
|
String::from("dim"),
|
|
Brightness::Dim { glow: 0 }.to_string().as_ref()
|
|
);
|
|
assert_eq!(
|
|
String::from("bright"),
|
|
Brightness::BrightWhite.to_string().as_ref()
|
|
);
|
|
}
|