podman-rest-client 0.13.0

Interface for querying the podman REST API. Supports connections over SSH.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#[derive(Default, Debug)]
pub struct ImageList<'a> {
    /// Show all images. Only images from a final layer (no children) are shown by default.
    pub all: Option<bool>,
    /// A JSON encoded value of the filters (a `map[string][]string`) to process on the images list. Available filters:
    /// - `before`=(`<image-name>[:<tag>]`,  `<image id>` or `<image@digest>`)
    /// - `dangling=true`
    /// - `label=key` or `label="key=value"` of an image label
    /// - `reference`=(`<image-name>[:<tag>]`)
    /// - `since`=(`<image-name>[:<tag>]`,  `<image id>` or `<image@digest>`)
    pub filters: Option<&'a str>,
    /// Not supported
    pub digests: Option<bool>,
}