We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 54f0a32 commit 44dbfc1Copy full SHA for 44dbfc1
src/libstd/thread/local.rs
@@ -85,6 +85,8 @@ pub struct LocalKey<T> {
85
}
86
87
/// Declare a new thread local storage key of type `std::thread::LocalKey`.
88
+///
89
+/// See [LocalKey documentation](thread/struct.LocalKey.html) for more information.
90
#[macro_export]
91
#[stable(feature = "rust1", since = "1.0.0")]
92
#[allow_internal_unstable]
src/libstd/thread/scoped_tls.rs
@@ -66,6 +66,8 @@ pub struct ScopedKey<T> { #[doc(hidden)] pub inner: __impl::KeyInner<T> }
66
///
67
/// This macro declares a `static` item on which methods are used to get and
68
/// set the value stored within.
69
70
+/// See [ScopedKey documentation](thread/struct.ScopedKey.html) for more information.
71
72
73
macro_rules! scoped_thread_local {
0 commit comments