Use #[doc(no_inline)] on re-exports

This commit is contained in:
Taiki Endo 2022-03-13 00:17:41 +09:00
parent 4a775ebcb0
commit 8dae6af497
1 changed files with 3 additions and 1 deletions

View File

@ -94,11 +94,13 @@ use std::time::Duration;
use async_channel::{bounded, Receiver};
use async_task::Runnable;
pub use async_task::Task;
use atomic_waker::AtomicWaker;
use futures_lite::{future, prelude::*, ready};
use once_cell::sync::Lazy;
#[doc(no_inline)]
pub use async_task::Task;
/// Default value for max threads that Executor can grow to
const DEFAULT_MAX_THREADS: usize = 500;