summaryrefslogtreecommitdiffstats
path: root/tokio/src/macros
diff options
context:
space:
mode:
authorAlice Ryhl <alice@ryhl.io>2020-10-02 06:13:28 +0200
committerGitHub <noreply@github.com>2020-10-01 21:13:28 -0700
commit7ec6d88b21ea3e5531176f526a51dae0a4513025 (patch)
tree6b4f289567fce7033551910c684c8358da4a58d8 /tokio/src/macros
parent13de30c53eb90a5453f1cecf47b188e254a293ac (diff)
chore: make #[doc(hidden)] apis private (#2901)
Diffstat (limited to 'tokio/src/macros')
-rw-r--r--tokio/src/macros/scoped_tls.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/tokio/src/macros/scoped_tls.rs b/tokio/src/macros/scoped_tls.rs
index 886f9d44..a00aae2f 100644
--- a/tokio/src/macros/scoped_tls.rs
+++ b/tokio/src/macros/scoped_tls.rs
@@ -23,9 +23,7 @@ macro_rules! scoped_thread_local {
/// Type representing a thread local storage key corresponding to a reference
/// to the type parameter `T`.
pub(crate) struct ScopedKey<T> {
- #[doc(hidden)]
pub(crate) inner: &'static LocalKey<Cell<*const ()>>,
- #[doc(hidden)]
pub(crate) _marker: marker::PhantomData<T>,
}