iced/
time.rs

1//! Listen and react to time.
2pub use crate::core::time::{Duration, Instant};
3
4#[allow(unused_imports)]
5#[cfg_attr(
6    docsrs,
7    doc(cfg(any(
8        feature = "tokio",
9        feature = "async-std",
10        feature = "smol",
11        target_arch = "wasm32"
12    )))
13)]
14pub use iced_futures::backend::default::time::*;