rustHow to use an enum as a key in a Rust HashMap?
Enums can be used as keys in a Rust HashMap by implementing the Eq
and Hash
traits.
use std::collections::HashMap;
#[derive(Eq, Hash, PartialEq)]
enum Color {
Red,
Blue,
Green,
}
fn main() {
let mut map = HashMap::new();
map.insert(Color::Red, "red");
map.insert(Color::Blue, "blue");
map.insert(Color::Green, "green");
println!("{:?}", map);
}
Output example
{Color::Red: "red", Color::Blue: "blue", Color::Green: "green"}
Code explanation
-
#[derive(Eq, Hash, PartialEq)]
: This line is used to derive theEq
andHash
traits for theColor
enum. This allows the enum to be used as a key in a HashMap. -
map.insert(Color::Red, "red")
: This line inserts a key-value pair into the HashMap. The key is theColor::Red
enum and the value is the string"red"
.
Helpful links
Related
- How to build a Rust HashMap from an iterator?
- How to use an enum in a Rust HashMap?
- How to use a Rust HashMap in a struct?
- How to check if a Rust HashMap contains a key?
- How to remove an element from a Rust HashMap if a condition is met?
- How to convert the keys of a Rust HashMap to a vector?
- How to convert a Rust HashMap to a JSON string?
- How to convert a Rust HashMap to a BTreeMap?
- How to compare two Rust HashMaps?
More of Rust
- How to extract data with regex in Rust?
- How to parse JSON string in Rust?
- How to convert JSON to a struct in Rust?
- Hashshet example in Rust
- How to use a custom hash function with a Rust HashMap?
- How to convert a Rust slice to a fixed array?
- How to use an async Rust HashMap?
- How to convert Rust bytes to a vector of u8?
- How to escape dots with regex in Rust?
- How to build a Rust HashMap from an iterator?
See more codes...