podman_rest_client/v4/params/
manifest_create_libpod.rs

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