Grant any elevated privileges this executor needs (e.g. file capabilities). Runs after [`setup`](Self::setup) and may prompt for sudo. Defaults to a no-op for executors that need none.
(&self)
| 137 | /// Runs after [`setup`](Self::setup) and may prompt for sudo. Defaults to a |
| 138 | /// no-op for executors that need none. |
| 139 | fn grant_privileges(&self) -> Result<()> { |
| 140 | Ok(()) |
| 141 | } |
| 142 | |
| 143 | /// Runs the executor |
| 144 | async fn run( |
no outgoing calls