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
15
#[derive(Default, Debug)]
pub struct ManifestCreateLibpod<'a> {
    /// manifest list or index name to create
    pub name: &'a str,
    /// One or more names of an image or a manifest list. Repeat parameter as needed.
    ///
    /// Support for multiple images, as of version 4.0.0
    /// Alias of `image` is support for compatibility with < 4.0.0
    /// Response status code is 200 with < 4.0.0 for compatibility
    pub images: &'a str,
    /// add all contents if given list
    pub all: Option<bool>,
    /// modify an existing list if one with the desired name already exists
    pub amend: Option<bool>,
}