Whether this prune was a no-op (i.e. no images, layers or objects were pruned).
(&self)
| 235 | impl Pruned { |
| 236 | /// Whether this prune was a no-op (i.e. no images, layers or objects were pruned). |
| 237 | pub fn is_empty(&self) -> bool { |
| 238 | self.n_images == 0 && self.n_layers == 0 && self.n_objects_pruned == 0 |
| 239 | } |
| 240 | } |
| 241 | |
| 242 | /// This combines the functionality of [`remove_undeployed_images()`] with [`super::store::gc_image_layers()`]. |
no outgoing calls