point/
point.rs

1#![cfg(feature = "derive")]
2
3use serde::{Deserialize, Serialize};
4use serde_content::{Deserializer, Serializer};
5
6#[derive(Debug, Serialize, Deserialize)]
7struct Point {
8    x: i32,
9    y: i32,
10}
11
12fn main() -> serde_content::Result<()> {
13    let point = Point { x: 1, y: 2 };
14
15    // Convert the Point to the Value type.
16    let serialized = Serializer::new().serialize(&point)?;
17
18    // Pretty print the serialised Value.
19    dbg!(&serialized);
20
21    // Convert the Value back to a Point.
22    let deserialized: Point = Deserializer::new(serialized).deserialize()?;
23
24    // Pretty print the deserialised Point.
25    dbg!(deserialized);
26
27    Ok(())
28}