devela/data/key/static_map/mod.rs
1// devela::data::key::static_map
2//
3//! Defines the [`define_static_map!`] macro and the [`StaticEntry`] enum.
4//
5
6#[cfg(test)]
7mod tests;
8
9mod define; // define_static_map!
10mod entry; // StaticEntry
11
12crate::items! { // structural access: _mods, _all
13 #[allow(unused)]
14 pub use _mods::*;
15
16 mod _mods { #![allow(unused)]
17 pub use super::{define::*, entry::*};
18 }
19 pub(super) mod _all { #![allow(unused)]
20 #[doc(inline)]
21 pub use super::_mods::*;
22 }
23}