podman_rest_client/v4/params/image_delete_all_libpod.rs
1#[derive(Default, Debug)]
2pub struct ImageDeleteAllLibpod<'a> {
3 /// Images IDs or names to remove.
4 pub images: Option<Vec<&'a str>>,
5 /// Remove all images.
6 pub all: Option<bool>,
7 /// Force image removal (including containers using the images).
8 pub force: Option<bool>,
9 /// Ignore if a specified image does not exist and do not throw an error.
10 pub ignore: Option<bool>,
11 /// Resolves to manifest list instead of image.
12 pub lookup_manifest: Option<bool>,
13}