Skip to content

How to use enum as K in FnvIndexMap #366

@andrew-ares

Description

@andrew-ares

I have an enum that I want to use as the key type in an FnvIndexMap.:

use hash32_derive::Hash32;

#[derive(Hash, Hash32)]
pub enum Command {
  // ...
}
// says "#[derive(Hash)] doesn't currently support `enum` and `union`"

static M: FnvIndexMap<Command, u32, 3> = FnvIndexMap::from_iter([(Command::Send, 1)]);
// says `the trait bound `Command: hash32::Hash` is not satisfied`

I noticed that a related issue rust-embedded-community/hash32#3 has been closed, but it seems that the problem still persists.

Metadata

Metadata

Assignees

No one assigned

    Labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions