rustHow to convert a Rust HashMap to JSON?
Converting a Rust HashMap to JSON can be done using the serde
crate. serde
provides a Serialize
trait which can be used to serialize a Rust data structure into a JSON string.
Example code
use serde::{Serialize, Deserialize};
#[derive(Serialize, Deserialize)]
struct Person {
name: String,
age: u8,
}
fn main() {
let mut map = std::collections::HashMap::new();
map.insert("John", Person {
name: "John".to_string(),
age: 30,
});
map.insert("Alice", Person {
name: "Alice".to_string(),
age: 25,
});
let json = serde_json::to_string(&map).unwrap();
println!("{}", json);
}
Output example
{"John":{"name":"John","age":30},"Alice":{"name":"Alice","age":25}}
Code explanation
-
use serde::{Serialize, Deserialize};
: This imports theSerialize
andDeserialize
traits from theserde
crate. -
#[derive(Serialize, Deserialize)]
: This derives theSerialize
andDeserialize
traits for thePerson
struct. -
let json = serde_json::to_string(&map).unwrap();
: This uses theserde_json
crate to serialize themap
into a JSON string. -
println!("{}", json);
: This prints the JSON string to the console.
Helpful links
Related
- How to convert the keys of a Rust HashMap to a vector?
- How to use a custom hash function with a Rust HashMap?
- How to use an enum in a Rust HashMap?
- How to clone a Rust HashMap?
- How to clear a Rust HashMap?
- How to get a reference to a key in a Rust HashMap?
- How to get all values from a Rust HashMap?
- How to create a HashMap of HashMaps in Rust?
- How to build a Rust HashMap from an iterator?
- How to use a Rust HashMap in a struct?
More of Rust
- How to replace strings using Rust regex?
- How to compile a regex in Rust?
- How to add matrices in Rust?
- How to perform matrix operations in Rust?
- How to use regex with bytes in Rust?
- How to match a string with regex in Rust?
- How to convert JSON to a struct in Rust?
- How to replace a capture group using Rust regex?
- How to convert the keys of a Rust HashMap to a vector?
- How to compare two Rust HashMaps?
See more codes...