| 113 | |
| 114 | #[derive(Debug)] |
| 115 | pub struct AsyncParallelHandle<R> { |
| 116 | join_handle: JoinHandle<()>, |
| 117 | result_rx: mpsc::Receiver<Result<ParallelRunReport<R>, HpcParallelError>>, |
| 118 | } |
| 119 | |
| 120 | impl<R> AsyncParallelHandle<R> { |
| 121 | pub fn is_finished(&self) -> bool { |
nothing calls this directly
no outgoing calls
no test coverage detected