(
&self,
_system_info: &SystemInfo,
_setup_cache_dir: Option<&Path>,
)
| 126 | fn support_level(&self, system_info: &SystemInfo) -> ExecutorSupport; |
| 127 | |
| 128 | async fn setup( |
| 129 | &self, |
| 130 | _system_info: &SystemInfo, |
| 131 | _setup_cache_dir: Option<&Path>, |
| 132 | ) -> Result<()> { |
| 133 | Ok(()) |
| 134 | } |
| 135 | |
| 136 | /// Grant any elevated privileges this executor needs (e.g. file capabilities). |
| 137 | /// Runs after [`setup`](Self::setup) and may prompt for sudo. Defaults to a |
no outgoing calls
no test coverage detected