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.

Trait Implementations

impl<T> Debug for ScopedJoinHandle<T>
[src]

fn fmt(&self, f: &mut Formatter) -> Result

Formats the value using the given formatter.