//! The standard API for Instant is not available in Wasm runtimes.
//! This module replaces the Instant type from std to a custom implementation.
#[cfg(target_arch ="wasm32")]modwasm;#[cfg(target_arch ="wasm32")]pub(crate)usewasm::Instant;#[cfg(not(target_arch ="wasm32"))]pub(crate)usestd::time::Instant;