podman_rest_client/v5/params/image_list_libpod.rs
1#[derive(Default, Debug)]
2pub struct ImageListLibpod<'a> {
3 /// Show all images. Only images from a final layer (no children) are shown by default.
4 pub all: Option<bool>,
5 /// A JSON encoded value of the filters (a `map[string][]string`) to process on the images list. Available filters:
6 /// - `before`=(`<image-name>[:<tag>]`, `<image id>` or `<image@digest>`)
7 /// - `dangling=true`
8 /// - `label=key` or `label="key=value"` of an image label
9 /// - `reference`=(`<image-name>[:<tag>]`)
10 /// - `id`=(`<image-id>`)
11 /// - `since`=(`<image-name>[:<tag>]`, `<image id>` or `<image@digest>`)
12 pub filters: Option<&'a str>,
13}