diff options
author | 2020-04-04 02:25:40 +0100 | |
---|---|---|
committer | 2020-04-04 02:25:40 +0100 | |
commit | 070e8e70e4a99906225f64f2ae26d06da9e36dca (patch) | |
tree | 4a34094e58027be5c69f28d826a7e74e7297a3db /futures/src/executor/thread_pool.rs | |
parent | 5198f8e3e44ef512295db1394d377b75bafe7e3c (diff) | |
download | iced-070e8e70e4a99906225f64f2ae26d06da9e36dca.tar.gz iced-070e8e70e4a99906225f64f2ae26d06da9e36dca.tar.bz2 iced-070e8e70e4a99906225f64f2ae26d06da9e36dca.zip |
doc feature flags in futures
Diffstat (limited to 'futures/src/executor/thread_pool.rs')
-rw-r--r-- | futures/src/executor/thread_pool.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/futures/src/executor/thread_pool.rs b/futures/src/executor/thread_pool.rs index 1ec5bf69..a6c6168e 100644 --- a/futures/src/executor/thread_pool.rs +++ b/futures/src/executor/thread_pool.rs @@ -3,6 +3,7 @@ use crate::Executor; use futures::Future; /// A thread pool runtime for futures. +#[cfg_attr(docsrs, doc(cfg(feature = "thread-pool")))] pub type ThreadPool = futures::executor::ThreadPool; impl Executor for futures::executor::ThreadPool { |