#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

20 releases

0.1.19 Apr 8, 2024
0.1.18 Jan 2, 2024
0.1.17 Oct 30, 2023
0.1.16 Jul 27, 2023
0.1.3 Feb 21, 2019

#1499 in Encoding

Download history 453763/week @ 2024-01-18 449935/week @ 2024-01-25 424613/week @ 2024-02-01 429882/week @ 2024-02-08 441028/week @ 2024-02-15 472134/week @ 2024-02-22 490702/week @ 2024-02-29 459538/week @ 2024-03-07 465184/week @ 2024-03-14 478478/week @ 2024-03-21 452972/week @ 2024-03-28 456475/week @ 2024-04-04 476683/week @ 2024-04-11 477254/week @ 2024-04-18 481838/week @ 2024-04-25 394694/week @ 2024-05-02

1,914,319 downloads per month
Used in 2,213 crates (522 directly)

MIT/Apache

14KB
210 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

~300–750KB
~18K SLoC