Struct ContextJoinHandle

Source
pub struct ContextJoinHandle<'scope, T> { /* private fields */ }
Expand description

A handle that can be used to join its context thread.

This struct is created by the Context::spawn method and the [ContextJoinHandle::spawn] method.

Implementations§

Source§

impl<T> ContextJoinHandle<'_, T>

Source

pub fn join(self) -> Result<T>

Waits for the thread to finish and returns its result.

If the child thread panics, an error is returned.

§Panics

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

§Examples
use ctx_thread::scope;

scope(|ctx| {
    let handle1 = ctx.spawn(|_| println!("I'm a happy thread :)"));
    let handle2 = ctx.spawn(|_| panic!("I'm a sad thread :("));

    // Join the first thread and verify that it succeeded.
    let res = handle1.join();
    assert!(res.is_ok());

    // Join the second thread and verify that it panicked.
    let res = handle2.join();
    assert!(res.is_err());
}).unwrap();
Source

pub fn thread(&self) -> &Thread

Returns a handle to the underlying thread.

Trait Implementations§

Source§

impl<T> Debug for ContextJoinHandle<'_, T>

Source§

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

Formats the value using the given formatter. Read more
Source§

impl<T> JoinHandleExt for ContextJoinHandle<'_, T>

Source§

fn as_pthread_t(&self) -> RawPthread

Extracts the raw pthread_t without taking ownership
Source§

fn into_pthread_t(self) -> RawPthread

Consumes the thread, returning the raw pthread_t Read more
Source§

impl<T> Send for ContextJoinHandle<'_, T>

Source§

impl<T> Sync for ContextJoinHandle<'_, T>

Auto Trait Implementations§

§

impl<'scope, T> Freeze for ContextJoinHandle<'scope, T>

§

impl<'scope, T> RefUnwindSafe for ContextJoinHandle<'scope, T>

§

impl<'scope, T> Unpin for ContextJoinHandle<'scope, T>

§

impl<'scope, T> UnwindSafe for ContextJoinHandle<'scope, T>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.