Crates.io | serde_string_enum |
lib.rs | serde_string_enum |
version | 0.2.1 |
source | src |
created_at | 2023-08-06 00:05:48.780091 |
updated_at | 2023-08-08 05:57:41.103055 |
description | Procedural macros for serde serialization and deserialization of string-encoded enums. |
homepage | |
repository | https://github.com/jackson-nestelroad/serde-string-enum |
max_upload_size | |
id | 936851 |
size | 36,129 |
This crate provides a procedural macro to automatically derive serde's Serialize
and Deserialize
traits for enum types that should be encoded as a single string.
[dependencies]
serde = "1.0"
serde_string_enum = "0.2"
unicase = "2.6.0"
This crate defines two pairs of macros:
SerializeLabeledStringEnum
/ DeserializeLabeledStringEnum
- Uses the #[string = ...]
attribute on each enum variant to perform string conversions.SerializeStringEnum
/ DeserializeStringEnum
- Uses the enum type's Display
and FromStr
implementations to perform string conversions.default
- std
, unicase
std
- Depend on the Rust standard library.alloc
- Depend on the alloc library without the Rust standard library.unicase
- Depend on the unicase crate for Unicode-insensitive matching.#[cfg(feature = "alloc")]
extern crate alloc;
use serde_string_enum::{
DeserializeLabeledStringEnum,
SerializeLabeledStringEnum,
};
#[derive(Debug, PartialEq, SerializeLabeledStringEnum, DeserializeLabeledStringEnum)]
enum Type {
#[string = "Grass"]
Grass,
#[string = "Fire"]
#[alias = "Flame"]
Fire,
#[string = "Water"]
Water,
}
fn main() -> serde_json::Result<()> {
let j = serde_json::to_string(&Type::Grass)?;
assert_eq!(j, "\"Grass\"");
let t: Type = serde_json::from_str(&j)?;
assert_eq!(t, Type::Grass);
// Alias strings.
let t: Type = serde_json::from_str("\"Flame\"")?;
assert_eq!(t, Type::Fire);
// Case-insensitive conversion also works.
if cfg!(feature = "unicase") {
let t: Type = serde_json::from_str("\"water\"")?;
assert_eq!(t, Type::Water);
}
Ok(())
}
use core::{
fmt::Display,
str::FromStr,
};
use serde_string_enum::{
DeserializeStringEnum,
SerializeStringEnum,
};
#[derive(Debug, PartialEq, SerializeStringEnum, DeserializeStringEnum)]
enum Move {
Stay,
Forward(u8),
Left(u8),
}
impl Display for Move {
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
match self {
Self::Stay => write!(f, "S"),
Self::Forward(n) => write!(f, "F{n}"),
Self::Left(n) => write!(f, "L{n}"),
}
}
}
impl FromStr for Move {
type Err = String;
fn from_str(s: &str) -> Result<Self, Self::Err> {
Ok(match &s[0..1] {
"S" => Self::Stay,
"F" => Self::Forward(s[1..].parse::<u8>().map_err(|err| err.to_string())?),
"L" => Self::Left(s[1..].parse::<u8>().map_err(|err| err.to_string())?),
_ => return Err(format!("invalid move {s}")),
})
}
}
fn main() -> serde_json::Result<()> {
let j = serde_json::to_string(&Move::Forward(10))?;
assert_eq!(j, "\"F10\"");
let m: Move = serde_json::from_str(&j)?;
assert_eq!(m, Move::Forward(10));
let moves: Vec<Move> = serde_json::from_str("[\"S\",\"F2\",\"S\",\"L4\"]")?;
assert_eq!(
moves,
vec![Move::Stay, Move::Forward(2), Move::Stay, Move::Left(4)]
);
Ok(())
}