Struct vstd::thread::JoinHandle
source · pub struct JoinHandle<Ret> { /* private fields */ }
Expand description
Object returned by spawn()
to allow thread joining.
(Wrapper around std::thread::JoinHandle
.)
See the documentation of spawn()
for more details.
Implementations§
Auto Trait Implementations§
impl<Ret> !RefUnwindSafe for JoinHandle<Ret>
impl<Ret> Send for JoinHandle<Ret>
impl<Ret> Sync for JoinHandle<Ret>
impl<Ret> Unpin for JoinHandle<Ret>
impl<Ret> !UnwindSafe for JoinHandle<Ret>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more