(err: &BollardError)
| 3327 | } |
| 3328 | |
| 3329 | fn is_docker_not_found_error(err: &BollardError) -> bool { |
| 3330 | matches!( |
| 3331 | err, |
| 3332 | BollardError::DockerResponseServerError { |
| 3333 | status_code: 404, |
| 3334 | .. |
| 3335 | } |
| 3336 | ) |
| 3337 | } |
| 3338 | |
| 3339 | async fn export_local_image_rootfs_to_path( |
| 3340 | docker: &Docker, |
no outgoing calls
no test coverage detected