1 2 3 4 5 6 7 8 9 10 11
//! Main Mobile Performance Profiler //! //! Split into submodules for maintainability. mod profiler_components; mod profiler_impl; mod profiler_types; pub use profiler_components::*; pub use profiler_impl::*; pub use profiler_types::*;