Searched defs:JoinHandle (Results 1 – 2 of 2) sorted by relevance
47 pub struct JoinHandle<R> { struct52 unsafe impl<R: Send> Send for JoinHandle<R> {} argument53 unsafe impl<R: Send> Sync for JoinHandle<R> {} implementation55 impl<R> JoinHandle<R> { implementation96 impl<R> Unpin for JoinHandle<R> {} implementation98 impl<R> Future for JoinHandle<R> { implementation131 impl<R> Drop for JoinHandle<R> { implementation
503 handles: &mut Vec<crate::runtime::JoinHandle<()>>, in launch()