rustHow to use an enum in a Rust HashMap?
Enums can be used as keys in a Rust HashMap. To do this, the enum must implement the Eq and Hash traits.
Example code
use std::collections::HashMap;
#[derive(Eq, Hash, PartialEq)]
enum Color {
Red,
Blue,
Green,
}
fn main() {
let mut colors = HashMap::new();
colors.insert(Color::Red, "red");
colors.insert(Color::Blue, "blue");
colors.insert(Color::Green, "green");
println!("{:?}", colors);
}
Output example
{Color::Red: "red", Color::Blue: "blue", Color::Green: "green"}
Code explanation
-
#[derive(Eq, Hash, PartialEq)]: This line is used to derive theEq,Hash, andPartialEqtraits for theColorenum. This is necessary for the enum to be used as a key in a HashMap. -
let mut colors = HashMap::new();: This line creates a new empty HashMap. -
colors.insert(Color::Red, "red");: This line inserts a key-value pair into the HashMap. The key is theColor::Redenum variant, and the value is the string"red".
Helpful links
Related
- How to create a HashMap of structs in Rust?
- How to print a Rust HashMap?
- How to sort a Rust HashMap?
- How to compare two Rust HashMaps?
- How to sort the keys in a Rust HashMap?
- How to clear a Rust HashMap?
- How to lock a Rust HashMap?
- How to build a Rust HashMap from an iterator?
- How to add an entry to a Rust HashMap?
- How to convert a Rust HashMap to a JSON string?
More of Rust
- How to match whitespace with a regex in Rust?
- How to replace a capture group using Rust regex?
- Regex example to match multiline string in Rust?
- Generator example in Rust
- How to use regex lookbehind in Rust?
- Rust named loop example
- How to replace strings using Rust regex?
- How to split a string with Rust regex?
- How to use non-capturing groups in Rust regex?
- How to parse JSON string in Rust?
See more codes...