blob: 26d31c0a4c4251869179c09768b5f47a9f120bb2 (
plain) (
blame)
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::*;
|