Trait Join

Source
pub trait Join {
    // Required method
    fn join(self) -> Result<()>;
}
Expand description

Trait to access the join function of a thread handle.

Required Methods§

Source

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

Joins this thread.

Implementations on Foreign Types§

Source§

impl Join for JoinHandle<()>

Source§

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

Source§

impl<'a> Join for ScopedJoinHandle<'a, ()>

Source§

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

Implementors§