summaryrefslogtreecommitdiffstats
path: root/futures/src/executor.rs
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2025-02-21 01:41:42 +0100
committerLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2025-02-21 01:41:56 +0100
commitc12beecd387ad57eef434b64598473f613e32f57 (patch)
tree79104030fec14dc20c4df86baf2b1965ccd290cb /futures/src/executor.rs
parent33a39bc83a1de62f21b3176ab86bd542d5f5c20b (diff)
downloadiced-c12beecd387ad57eef434b64598473f613e32f57.tar.gz
iced-c12beecd387ad57eef434b64598473f613e32f57.tar.bz2
iced-c12beecd387ad57eef434b64598473f613e32f57.zip
Remove unnecessary `Future` imports
Diffstat (limited to 'futures/src/executor.rs')
-rw-r--r--futures/src/executor.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/futures/src/executor.rs b/futures/src/executor.rs
index 3b0d4af1..9c14a2c9 100644
--- a/futures/src/executor.rs
+++ b/futures/src/executor.rs
@@ -1,8 +1,6 @@
//! Choose your preferred executor to power a runtime.
use crate::MaybeSend;
-use futures::Future;
-
/// A type that can run futures.
pub trait Executor: Sized {
/// Creates a new [`Executor`].