// Copyright (c) TribuFu. All Rights Reserved. #![allow(non_snake_case)] #[cfg(not(target_arch = "wasm32"))] pub mod Foreign; #[cfg(not(target_arch = "wasm32"))] #[path = "MemoryStats.rs"] mod _MemoryStats; #[cfg(not(target_arch = "wasm32"))] pub use self::_MemoryStats::*; #[cfg(not(target_arch = "wasm32"))] pub mod Parallel; #[cfg(not(target_arch = "wasm32"))] #[path = "ProcessorInfo.rs"] mod _ProcessorInfo; #[cfg(not(target_arch = "wasm32"))] pub use self::_ProcessorInfo::*; #[cfg(not(target_arch = "wasm32"))] #[path = "SystemInfo.rs"] mod _SystemInfo; #[cfg(not(target_arch = "wasm32"))] pub use self::_SystemInfo::*;