[][src]Struct crossbeam_utils::thread::ScopedJoinHandle

pub struct ScopedJoinHandle<'scope, T> { /* fields omitted */ }

A handle to a scoped thread

Methods

impl<'scope, T> ScopedJoinHandle<'scope, T>
[src]

Waits for the associated thread to finish.

If the child thread panics, Err is returned with the parameter given to panic.

Panics

This function may panic on some platforms if a thread attempts to join itself or otherwise may create a deadlock with joining threads.

Gets the underlying std::thread::Thread handle.

Trait Implementations

impl<'scope, T> Sync for ScopedJoinHandle<'scope, T>
[src]

impl<'scope, T> Send for ScopedJoinHandle<'scope, T>
[src]

impl<'scope, T> Debug for ScopedJoinHandle<'scope, T>
[src]

Blanket Implementations

impl<T> From for T
[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]