Struct crossbeam_utils::scoped::ScopedJoinHandle
[−]
[src]
pub struct ScopedJoinHandle<'a, T: 'a> { /* fields omitted */ }
A handle to a scoped thread
Methods
impl<'a, T: Send + 'a> ScopedJoinHandle<'a, T>
[src]
pub fn join(self) -> Result<T>
[src]
Join the scoped thread, returning the result it produced.
pub fn thread(&self) -> &Thread
[src]
Get the underlying thread handle.