(
&self,
sandbox: &Sandbox,
state_dir: &Path,
plan: &mut LaunchPlan,
)
| 589 | } |
| 590 | |
| 591 | pub async fn before_launch( |
| 592 | &self, |
| 593 | sandbox: &Sandbox, |
| 594 | state_dir: &Path, |
| 595 | plan: &mut LaunchPlan, |
| 596 | ) -> LifecycleResult<()> { |
| 597 | for ext in self.active_for(sandbox) { |
| 598 | ext.before_launch(sandbox, state_dir, plan).await?; |
| 599 | } |
| 600 | Ok(()) |
| 601 | } |
| 602 | |
| 603 | pub async fn after_launch_failed( |
| 604 | &self, |
no test coverage detected