Struct crossbeam::ScopedJoinHandle [] [src]

pub struct ScopedJoinHandle<T> {
    // some fields omitted
}

A handle to a scoped thread

Methods

impl<T> ScopedJoinHandle<T>
[src]

fn join(self) -> T

Join the scoped thread, returning the result it produced.

fn thread(&self) -> &Thread

Get the underlying thread handle.