(
&self,
_sandbox: &Sandbox,
_state_dir: &Path,
plan: &mut LaunchPlan,
)
| 6836 | } |
| 6837 | |
| 6838 | async fn configure_launch( |
| 6839 | &self, |
| 6840 | _sandbox: &Sandbox, |
| 6841 | _state_dir: &Path, |
| 6842 | plan: &mut LaunchPlan, |
| 6843 | ) -> LifecycleResult<()> { |
| 6844 | plan.require_backend(VmBackend::Qemu); |
| 6845 | plan.require_backend_feature(BackendFeature::PciPassthrough); |
| 6846 | Ok(()) |
| 6847 | } |
| 6848 | |
| 6849 | async fn before_launch( |
| 6850 | &self, |
no test coverage detected