#deserialize #serde #root #during #structs #serialization #element

serde_struct_wrapper

Wrap Structs with an alternate root element during serialization and deserialization using Serde

3 releases

Uses old Rust 2015

0.3.2 Aug 18, 2018
0.3.1 Aug 18, 2018
0.3.0 Aug 18, 2018

#1379 in Encoding

Download history 311/week @ 2023-11-27 118/week @ 2023-12-04 90/week @ 2023-12-11 143/week @ 2023-12-18 216/week @ 2024-01-01 13/week @ 2024-02-19 28/week @ 2024-02-26 6/week @ 2024-03-04 7/week @ 2024-03-11

54 downloads per month

MIT/Apache

12KB
110 lines

Serde Struct Wrapper

Build Status Latest Version Rust Documentation

This crate provides macros that enable wrapping Rust structs with alternate root keys during serialization and deserialization using Serde. In principle, it offers a functionality similar to the @JsonRootName annotation for Java's Jackson framework.

Note that this crate is primarily intended to be used in conjunction with the serde_json crate. It has not been tested with other data formats.

Usage

Add this to your Cargo.toml:

serde_struct_wrapper = "0.3"

You can use the serde_with_root! macro as shown below to both serialize and deserialize a Struct with an alternate root key. (Please note the use of the #[serde(remote = "Self")] attribute on the Struct letting SerDe know of the alernate Serialize and Deserialize implementations provided by the macro.)

extern crate serde;
#[macro_use]
extern crate serde_derive;
#[macro_use]
extern crate serde_struct_wrapper;
#[derive(Serialize, Deserialize, Debug)]
#[serde(remote = "Self")]
pub struct Point {
    pub x: i32,
    pub y: i32,
}
serde_with_root!("point": Point);

The above will let you serialize/deserialize a JSON structure like the following:

{
    "point": {
        "x": 1,
        "y": 2
    }
}

For getting only the Serializer implementation, use the serialize_with_root! macro; likewise with the deserialize_with_root! macro for only the Deserializer implementation.

License

Serde is licensed under either of

at your option.

Credits

The initial Deserializer implementation for this crate was provided by David Tolnay in this Github issue. The code provided there was used as the base to provide this crate.

Dependencies

~0.5–1.1MB
~26K SLoC