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
, andPartialEq
traits for theColor
enum. 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::Red
enum variant, and the value is the string"red"
.
Helpful links
Related
- How to implement PartialEq for a Rust HashMap?
- How to use a tuple as a key in a Rust HashMap?
- How to convert a Rust HashMap to JSON?
- How to convert the keys of a Rust HashMap to a vector?
- How to convert a Rust HashMap to a JSON string?
- How to use a HashBrown with a Rust HashMap?
- How to sort the keys in a Rust HashMap?
- How to use a custom hash function with a Rust HashMap?
- How to remove an element from a Rust HashMap if a condition is met?
- How to create a Rust HashMap with a string key?
More of Rust
- How to use regex to match a group in Rust?
- How to use regex to match a double quote in Rust?
- How to match whitespace with a regex in Rust?
- How to parse JSON string in Rust?
- How to get a capture group using Rust regex?
- How to match the end of a line in a Rust regex?
- How to use regex with bytes in Rust?
- How to implement PartialEq for a Rust HashMap?
- How to use a tuple as a key in a Rust HashMap?
- How to use non-capturing groups in Rust regex?
See more codes...