enum-table 3.0.1

A library for creating tables with enums as key.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
mod iter;

mod core;

#[cfg(feature = "std")]
mod map;

#[cfg(feature = "alloc")]
mod vec;
#[cfg(feature = "alloc")]
pub use vec::*;

#[cfg(feature = "serde")]
mod serde;