diff options
author | 2024-06-14 01:57:49 +0200 | |
---|---|---|
committer | 2024-06-14 01:57:49 +0200 | |
commit | 4e7cbbf98ab745351e2fb13a7c85d4ad560c21ee (patch) | |
tree | b1bad3d579ec580c40b9013c389c82376423ce7e /futures/src/executor.rs | |
parent | 4ab4ffc9cfa6d7bddddb2c4d513e2120244259a1 (diff) | |
download | iced-4e7cbbf98ab745351e2fb13a7c85d4ad560c21ee.tar.gz iced-4e7cbbf98ab745351e2fb13a7c85d4ad560c21ee.tar.bz2 iced-4e7cbbf98ab745351e2fb13a7c85d4ad560c21ee.zip |
Move `Maybe*` traits back to `iced_futures`
Diffstat (limited to 'futures/src/executor.rs')
-rw-r--r-- | futures/src/executor.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/futures/src/executor.rs b/futures/src/executor.rs index a9dde465..3b0d4af1 100644 --- a/futures/src/executor.rs +++ b/futures/src/executor.rs @@ -1,5 +1,6 @@ //! Choose your preferred executor to power a runtime. -use crate::core::MaybeSend; +use crate::MaybeSend; + use futures::Future; /// A type that can run futures. |