podman_rest_client/v4/params/image_list.rs
1#[derive(Default, Debug)]
2pub struct ImageList<'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    /// - `since`=(`<image-name>[:<tag>]`,  `<image id>` or `<image@digest>`)
11    pub filters: Option<&'a str>,
12    /// Not supported
13    pub digests: Option<bool>,
14}