[][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> Send for ScopedJoinHandle<'scope, T>
[src]

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

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

Formats the value using the given formatter. Read more

Blanket Implementations

impl<T> From for T
[src]

Performs the conversion.

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

Performs the conversion.

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.

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

Performs the conversion.

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

Important traits for &'a mut R

Immutably borrows from an owned value. Read more

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.

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

Performs the conversion.

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

Important traits for &'a mut R

Mutably borrows from an owned value. Read more

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

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

this method will likely be replaced by an associated static

Gets the TypeId of self. Read more