We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
JoinHandle
1 parent 8c63d12 commit 6e848beCopy full SHA for 6e848be
src/libstd/thread/mod.rs
@@ -610,6 +610,12 @@ impl<T> JoinInner<T> {
610
/// Due to platform restrictions, it is not possible to `Clone` this
611
/// handle: the ability to join a child thread is a uniquely-owned
612
/// permission.
613
+///
614
+/// This `struct` is created by the [`thread::spawn`] function and the
615
+/// [`thread::Builder::spawn`] method.
616
617
+/// [`thread::spawn`]: fn.spawn.html
618
+/// [`thread::Builder::spawn`]: struct.Builder.html#method.spawn
619
#[stable(feature = "rust1", since = "1.0.0")]
620
pub struct JoinHandle<T>(JoinInner<T>);
621
0 commit comments