iced/src/time.rs
2024-02-06 00:39:47 +01:00

14 lines
318 B
Rust

//! Listen and react to time.
pub use iced_core::time::{Duration, Instant};
#[allow(unused_imports)]
#[cfg_attr(
docsrs,
doc(cfg(any(
feature = "tokio",
feature = "async-std",
feature = "smol",
target_arch = "wasm32"
)))
)]
pub use iced_futures::backend::default::time::*;