(waker: Waker, config: CreateScratchConfig)
| 105 | } |
| 106 | |
| 107 | pub fn start_create_scratch(waker: Waker, config: CreateScratchConfig) -> JobState { |
| 108 | start_job(waker, "Create scratch", Job::CreateScratch, move |context, cancel| { |
| 109 | run_create_scratch(&context, cancel, config) |
| 110 | .map(|result| JobResult::CreateScratch(Some(result))) |
| 111 | }) |
| 112 | } |
nothing calls this directly
no test coverage detected