diff options
author | 2025-01-24 18:47:34 +0100 | |
---|---|---|
committer | 2025-01-24 18:47:34 +0100 | |
commit | 3d893ae01b64eb51b2f5854949c694090118e052 (patch) | |
tree | 9da2b03d4518fc2b17daf42f544693393c132565 /src/time.rs | |
parent | 3a07c631add426a308607055d1b46d934f21e7f6 (diff) | |
download | iced-3d893ae01b64eb51b2f5854949c694090118e052.tar.gz iced-3d893ae01b64eb51b2f5854949c694090118e052.tar.bz2 iced-3d893ae01b64eb51b2f5854949c694090118e052.zip |
Add `Duration` helpers to `time` module
Diffstat (limited to '')
-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( |