Include Strum in your project
masterTo use Strum, add it to your Cargo.toml. You can either import strum and strum_macros separately, or use the derive feature on the strum crate to import the macros directly from strum.
[dependencies]
strum = "0.28"
strum_macros = "0.28"
# Alternatively, use the derive feature to import macros directly from strum:
# strum = { version = "0.28", features = ["derive"] }