iced/core/src/time.rs
2022-01-28 21:37:17 +07:00

9 lines
214 B
Rust

//! Keep track of time, both in native and web platforms!
#[cfg(target_arch = "wasm32")]
pub use wasm_timer::Instant;
#[cfg(not(target_arch = "wasm32"))]
pub use std::time::Instant;
pub use std::time::Duration;