(&self)
| 1243 | } |
| 1244 | |
| 1245 | async fn current_snapshot_map(&self) -> Result<HashMap<String, DriverSandbox>, Status> { |
| 1246 | self.current_snapshots().await.map(|snapshots| { |
| 1247 | snapshots |
| 1248 | .into_iter() |
| 1249 | .map(|sandbox| (sandbox.id.clone(), sandbox)) |
| 1250 | .collect() |
| 1251 | }) |
| 1252 | } |
| 1253 | |
| 1254 | async fn list_managed_container_summaries(&self) -> Result<Vec<ContainerSummary>, Status> { |
| 1255 | let filters = managed_container_label_filters(&self.config.sandbox_namespace, []); |
no test coverage detected