Skip to content

Instantly share code, notes, and snippets.

@rust-play
Created January 18, 2019 08:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rust-play/72755f28f99afc95e01d63174b28c1f5 to your computer and use it in GitHub Desktop.
Save rust-play/72755f28f99afc95e01d63174b28c1f5 to your computer and use it in GitHub Desktop.
Code shared from the Rust Playground
use serde::{Serialize, Deserialize};
#[derive(Serialize, Deserialize, Debug)]
struct Point {
x: i32,
y: i32,
}
fn main() {
let point = Point { x: 1, y: 2 };
// Convert the Point to a JSON string.
let serialized = serde_json::to_string(&point).unwrap();
// Prints serialized = {"x":1,"y":2}
println!("serialized = {}", serialized);
// Convert the JSON string back to a Point.
let deserialized: Point = serde_json::from_str(&serialized).unwrap();
// Prints deserialized = Point { x: 1, y: 2 }
println!("deserialized = {:?}", deserialized);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment