Validate a sandbox before creation.
(
&self,
sandbox: &DriverSandbox,
)
| 351 | |
| 352 | /// Validate a sandbox before creation. |
| 353 | pub async fn validate_sandbox_create( |
| 354 | &self, |
| 355 | sandbox: &DriverSandbox, |
| 356 | ) -> Result<(), ComputeDriverError> { |
| 357 | let _ = self.validated_sandbox_create(sandbox).await?; |
| 358 | Ok(()) |
| 359 | } |
| 360 | |
| 361 | async fn validated_sandbox_create<'a>( |
| 362 | &self, |
no test coverage detected