#serde-derive #serialization #serde #integer #macro-derive #no-alloc

macro no-std serde_repr

Derive Serialize and Deserialize that delegates to the underlying repr of a C-like enum

19 releases

0.1.18 Jan 2, 2024
0.1.17 Oct 30, 2023
0.1.16 Jul 27, 2023
0.1.12 Mar 18, 2023
0.1.3 Feb 21, 2019

#1506 in Encoding

Download history 365476/week @ 2023-12-06 342906/week @ 2023-12-13 247571/week @ 2023-12-20 205597/week @ 2023-12-27 352399/week @ 2024-01-03 366276/week @ 2024-01-10 443556/week @ 2024-01-17 448728/week @ 2024-01-24 438605/week @ 2024-01-31 420858/week @ 2024-02-07 436259/week @ 2024-02-14 470123/week @ 2024-02-21 490888/week @ 2024-02-28 464224/week @ 2024-03-06 460222/week @ 2024-03-13 398622/week @ 2024-03-20

1,899,523 downloads per month
Used in 2,108 crates (497 directly)

MIT/Apache

14KB
208 lines

Serde repr derive

github crates.io docs.rs build status

This crate provides a derive macro to derive Serde's Serialize and Deserialize traits in a way that delegates to the underlying repr of a C-like enum.

[dependencies]
serde = "1.0"
serde_repr = "0.1"
use serde_repr::{Serialize_repr, Deserialize_repr};

#[derive(Serialize_repr, Deserialize_repr, PartialEq, Debug)]
#[repr(u8)]
enum SmallPrime {
    Two = 2,
    Three = 3,
    Five = 5,
    Seven = 7,
}

fn main() -> serde_json::Result<()> {
    let j = serde_json::to_string(&SmallPrime::Seven)?;
    assert_eq!(j, "7");

    let p: SmallPrime = serde_json::from_str("2")?;
    assert_eq!(p, SmallPrime::Two);

    Ok(())
}

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 this crate by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Dependencies

~275–720KB
~17K SLoC