(&self, sandbox: &Sandbox)
| 1778 | } |
| 1779 | |
| 1780 | fn resolved_sandbox_image(&self, sandbox: &Sandbox) -> Option<String> { |
| 1781 | requested_sandbox_image(sandbox) |
| 1782 | .map(ToOwned::to_owned) |
| 1783 | .or_else(|| { |
| 1784 | let image = self.config.default_image.trim(); |
| 1785 | (!image.is_empty()).then(|| image.to_string()) |
| 1786 | }) |
| 1787 | } |
| 1788 | |
| 1789 | async fn ensure_cached_bootstrap_rootfs_image( |
| 1790 | &self, |
no test coverage detected