| 214 | /// Helpers intended for [`tokio::process::Command`]. |
| 215 | #[allow(async_fn_in_trait)] |
| 216 | pub trait AsyncCommandRunExt { |
| 217 | /// Asynchronously execute the child, and return an error if the child exited unsuccessfully. |
| 218 | async fn run(&mut self) -> Result<()>; |
| 219 | } |
| 220 | |
| 221 | impl AsyncCommandRunExt for tokio::process::Command { |
| 222 | async fn run(&mut self) -> Result<()> { |
nothing calls this directly
no outgoing calls
no test coverage detected