serde-dot-case

Crates.ioserde-dot-case
lib.rsserde-dot-case
version0.1.0
sourcesrc
created_at2024-05-13 16:32:16.101295
updated_at2024-05-13 16:32:16.101295
descriptionRename all enum fields to dot.case
homepage
repositoryhttps://github.com/nitn3lav/serde-dot-case
max_upload_size
id1238637
size14,953
(nitn3lav)

documentation

README

serde-dot-case

Rename all enum fields to dot.case.

use serde::{Deserialize, Serialize};
use serde_dot_case::serde_dot_case;

#[serde_dot_case]
#[derive(Debug, Deserialize, Serialize)]
enum MyEnum {
    MyVariant,
}

#[test]
fn deserialize() {
    assert!(matches!(
        serde_json::from_str::<MyEnum>("\"my.variant\"").unwrap(),
        MyEnum::MyVariant
    ));
}

#[test]
fn serialize() {
    assert_eq!(
        "\"my.variant\"",
        serde_json::to_string(&MyEnum::MyVariant).unwrap(),
    );
}

License

Licensed under either of Apache License, Version 2.0 or MIT license at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in serde-dot-case by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.
Commit count: 1

cargo fmt