1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Listen and react to time.
pub use crate::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::*;