2020-04-30 05:37:44 +02:00
|
|
|
//! Listen and react to time.
|
2024-03-07 00:14:41 +01:00
|
|
|
pub use crate::core::time::{Duration, Instant};
|
2022-01-28 18:43:20 +07:00
|
|
|
|
2023-03-27 15:43:52 +02:00
|
|
|
#[allow(unused_imports)]
|
2024-01-08 16:00:17 +01:00
|
|
|
#[cfg_attr(
|
|
|
|
|
docsrs,
|
|
|
|
|
doc(cfg(any(
|
|
|
|
|
feature = "tokio",
|
|
|
|
|
feature = "async-std",
|
|
|
|
|
feature = "smol",
|
|
|
|
|
target_arch = "wasm32"
|
|
|
|
|
)))
|
|
|
|
|
)]
|
2022-01-28 18:24:07 +07:00
|
|
|
pub use iced_futures::backend::default::time::*;
|