diff options
author | 2025-02-21 01:22:56 +0100 | |
---|---|---|
committer | 2025-02-21 01:37:13 +0100 | |
commit | 9ceb467e6e12129b42d67a4a1ff3cb21bc7daadd (patch) | |
tree | dd8a9407058915c152ce6544ba20b75240ca85be /futures/src/backend/native/tokio.rs | |
parent | 28caeccf22d163e9014b5ed26334b6085683a28b (diff) | |
download | iced-9ceb467e6e12129b42d67a4a1ff3cb21bc7daadd.tar.gz iced-9ceb467e6e12129b42d67a4a1ff3cb21bc7daadd.tar.bz2 iced-9ceb467e6e12129b42d67a4a1ff3cb21bc7daadd.zip |
Run `cargo fmt`
Diffstat (limited to 'futures/src/backend/native/tokio.rs')
-rw-r--r-- | futures/src/backend/native/tokio.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/futures/src/backend/native/tokio.rs b/futures/src/backend/native/tokio.rs index c38ef566..0fd5da41 100644 --- a/futures/src/backend/native/tokio.rs +++ b/futures/src/backend/native/tokio.rs @@ -22,9 +22,9 @@ impl crate::Executor for Executor { pub mod time { //! Listen and react to time. + use crate::MaybeSend; use crate::core::time::{Duration, Instant}; use crate::subscription::Subscription; - use crate::MaybeSend; use futures::stream; use std::future::Future; |