Trait concurrency_traits::JoinableHandle[][src]

pub trait JoinableHandle: Sized + TryJoinableHandle<ThreadError = Infallible> {
    fn join(self) -> Self::Output { ... }
}
Expand description

A handle to a spawned thread that can be joined infallibly. Auto-implemented with TryJoinableHandle where possible.

Provided methods

fn join(self) -> Self::Output[src]

Joins the target thread blocking the current thread.

Implementors

impl<T> JoinableHandle for T where
    T: TryJoinableHandle<ThreadError = Infallible>, 
[src]