diff options
author | 2025-01-24 18:59:44 +0100 | |
---|---|---|
committer | 2025-01-24 18:59:44 +0100 | |
commit | 5eedf5798c0fcd92cfd3f304ce9454bb6c274f09 (patch) | |
tree | 0d8d28ef8c062ea1a1651b77531ed091dfe5e561 /src/time.rs | |
parent | 654c4b37148bda655f0c6676845d2b4ead801f40 (diff) | |
parent | 3d893ae01b64eb51b2f5854949c694090118e052 (diff) | |
download | iced-5eedf5798c0fcd92cfd3f304ce9454bb6c274f09.tar.gz iced-5eedf5798c0fcd92cfd3f304ce9454bb6c274f09.tar.bz2 iced-5eedf5798c0fcd92cfd3f304ce9454bb6c274f09.zip |
Merge pull request #2747 from iced-rs/time-repeat-subscription
Implement `time::repeat` and simplify `Subscription::run_with`
Diffstat (limited to 'src/time.rs')
-rw-r--r-- | src/time.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/time.rs b/src/time.rs index 26d31c0a..98a800ac 100644 --- a/src/time.rs +++ b/src/time.rs @@ -1,5 +1,5 @@ //! Listen and react to time. -pub use crate::core::time::{Duration, Instant}; +pub use crate::core::time::*; #[allow(unused_imports)] #[cfg_attr( |