1 2 3 4 5 6 7 8 9 10
// Map internals copied from rust-phf under the MIT license. // // See: // https://github.com/rust-phf/rust-phf/tree/b7116ff519415d302c070aa313831cd473b1a911 pub(crate) mod generator; mod hashing; pub use self::map_ref::MapRef; mod map_ref;