bijective_enum_map/lib.rs
1#![no_std]
2
3// See https://linebender.org/blog/doc-include for this README inclusion strategy
4//! [`bijective_enum_map`]: bijective_enum_map
5//! [`injective_enum_map`]: injective_enum_map
6//! [`From`]: From
7//! [`TryFrom`]: TryFrom
8// File links are not supported by rustdoc
9//! [LICENSE-APACHE]: https://github.com/robofinch/bijective-enum-map/blob/main/LICENSE-APACHE
10//! [LICENSE-MIT]: https://github.com/robofinch/bijective-enum-map/blob/main/LICENSE-MIT
11//!
12//! <style>
13//! .rustdoc-hidden { display: none; }
14//! </style>
15#![doc = include_str!("../README.md")]
16
17mod bijective;
18mod injective;
19// The helper macros in this module should not be considered part of the public API
20// (for either usage or semver purposes).
21mod helpers;