summaryrefslogtreecommitdiffstats
path: root/futures/src/backend/native/thread_pool.rs
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2022-02-01 11:40:58 +0700
committerLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2022-02-01 11:40:58 +0700
commitd95889aca9557dcefae37c63eb9b7dbc0d3cd7f2 (patch)
treec9296743188d298a4654163e275834692bca1f98 /futures/src/backend/native/thread_pool.rs
parent12060f823f9d519de2c61c7590b6e847e4b702e8 (diff)
downloadiced-d95889aca9557dcefae37c63eb9b7dbc0d3cd7f2.tar.gz
iced-d95889aca9557dcefae37c63eb9b7dbc0d3cd7f2.tar.bz2
iced-d95889aca9557dcefae37c63eb9b7dbc0d3cd7f2.zip
Fix `default` backend in `iced_futures`
Fixes #1228.
Diffstat (limited to 'futures/src/backend/native/thread_pool.rs')
-rw-r--r--futures/src/backend/native/thread_pool.rs8
1 files changed, 6 insertions, 2 deletions
diff --git a/futures/src/backend/native/thread_pool.rs b/futures/src/backend/native/thread_pool.rs
index 6e791533..da5d4b9b 100644
--- a/futures/src/backend/native/thread_pool.rs
+++ b/futures/src/backend/native/thread_pool.rs
@@ -3,9 +3,9 @@ use futures::Future;
/// A thread pool executor for futures.
#[cfg_attr(docsrs, doc(cfg(feature = "thread-pool")))]
-pub type ThreadPool = futures::executor::ThreadPool;
+pub type Executor = futures::executor::ThreadPool;
-impl crate::Executor for futures::executor::ThreadPool {
+impl crate::Executor for Executor {
fn new() -> Result<Self, futures::io::Error> {
futures::executor::ThreadPool::new()
}
@@ -14,3 +14,7 @@ impl crate::Executor for futures::executor::ThreadPool {
self.spawn_ok(future);
}
}
+
+pub mod time {
+ //! Listen and react to time.
+}