Crates.io | serde_plain |
lib.rs | serde_plain |
version | 1.0.2 |
source | src |
created_at | 2018-03-12 22:31:10.313711 |
updated_at | 2023-08-25 14:51:19.466002 |
description | A restricted plain text serializer for serde |
homepage | https://docs.rs/serde_plain |
repository | https://github.com/mitsuhiko/serde-plain |
max_upload_size | |
id | 55238 |
size | 42,896 |
This crate implements a plain text serializer and deserializer. It can only
serialize and deserialize primitives and derivatives thereof (like basic enums
or newtypes). It internally uses the FromStr
and Display
trait to convert
objects around.
To parse a value from a string the from_str helper can be used:
assert_eq!(serde_plain::from_str::<i32>("42").unwrap(), 42);
This is particularly useful if enums are in use:
use serde::Deserialize;
#[derive(Deserialize, Debug, PartialEq, Eq)]
pub enum MyEnum {
VariantA,
VariantB,
}
assert_eq!(serde_plain::from_str::<MyEnum>("VariantA").unwrap(), MyEnum::VariantA);
The inverse is also possible with to_string:
assert_eq!(serde_plain::to_string(&true).unwrap(), "true");