rustHow to create a HashMap of structs in Rust?
A HashMap of structs in Rust can be created using the HashMap
type from the std::collections
module. The HashMap
type requires a key
and a value
type to be specified. The key
type must implement the Eq
and Hash
traits, while the value
type can be any type.
Example code
use std::collections::HashMap;
#[derive(Debug)]
struct Person {
name: String,
age: u32,
}
fn main() {
let mut map = HashMap::new();
map.insert("John", Person {
name: "John".to_string(),
age: 30,
});
map.insert("Alice", Person {
name: "Alice".to_string(),
age: 25,
});
println!("{:?}", map);
}
Output example
{"John": Person { name: "John", age: 30 }, "Alice": Person { name: "Alice", age: 25 }}
Code explanation
use std::collections::HashMap;
: This imports theHashMap
type from thestd::collections
module.#[derive(Debug)]
: This is a Rust attribute that allows thePerson
struct to be printed to the console.let mut map = HashMap::new();
: This creates a newHashMap
with no entries.map.insert("John", Person { ... });
: This inserts a new entry into theHashMap
with akey
of type&str
and avalue
of typePerson
.println!("{:?}", map);
: This prints the contents of theHashMap
to the console.
Helpful links
Related
- How to clone a Rust HashMap?
- 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 build a Rust HashMap from an iterator?
- How to use an enum in a Rust HashMap?
- How to convert a Rust HashMap to a JSON string?
- How to compare two Rust HashMaps?
- 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?
More of Rust
- How to escape dots with regex in Rust?
- How to match whitespace with a regex in Rust?
- How to replace strings using Rust regex?
- How to split a string with Rust regex?
- Hashshet example in Rust
- How to use a custom hash function with a Rust HashMap?
- How to parse JSON string in Rust?
- How to get a value by key from JSON in Rust?
- How to convert JSON to a struct in Rust?
- How to iterate lines in file in Rust
See more codes...