(waker: Waker, config: ObjDiffConfig)
| 182 | } |
| 183 | |
| 184 | pub fn start_build(waker: Waker, config: ObjDiffConfig) -> JobState { |
| 185 | start_job(waker, "Build", Job::ObjDiff, move |context, cancel| { |
| 186 | run_build(&context, cancel, config).map(|result| JobResult::ObjDiff(Some(result))) |
| 187 | }) |
| 188 | } |