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
#[derive(Default, Debug)]
pub struct ImageDeleteAllLibpod<'a> {
    /// Images IDs or names to remove.
    pub images: Option<Vec<&'a str>>,
    /// Remove all images.
    pub all: Option<bool>,
    /// Force image removal (including containers using the images).
    pub force: Option<bool>,
    /// Ignore if a specified image does not exist and do not throw an error.
    pub ignore: Option<bool>,
    /// Resolves to manifest list instead of image.
    pub lookup_manifest: Option<bool>,
}