1 //! Types, functions, traits, and other helpers to work with memory in UEFI 2 //! libraries and applications. 3 4 pub mod memory_map; 5 #[cfg(feature = "alloc")] 6 pub(crate) mod util; 7 8 #[cfg(feature = "alloc")] 9 pub(crate) use util::*; 10