(gsettings: &GlobalSettings, opts: TaskInfoOpts)
| 203 | } |
| 204 | |
| 205 | async fn command_task_info(gsettings: &GlobalSettings, opts: TaskInfoOpts) -> anyhow::Result<()> { |
| 206 | let mut session = get_client_session(gsettings.server_directory()).await?; |
| 207 | output_job_task_info( |
| 208 | gsettings, |
| 209 | &mut session, |
| 210 | opts.job_selector, |
| 211 | get_task_id_selector(Some(opts.task_selector)), |
| 212 | opts.verbosity.into(), |
| 213 | ) |
| 214 | .await |
| 215 | } |
| 216 | |
| 217 | async fn command_task_explain( |
| 218 | gsettings: &GlobalSettings, |
no test coverage detected