1 2 3 4 5 6 7 8 9 10
//! I define few implementations of [`NameLocker`](super::NameLocker). //! mod void; pub use void::VoidNameLocker; #[cfg(feature = "inmem")] mod inmem; #[cfg(feature = "inmem")] pub use inmem::InmemNameLocker;