podman_rest_client/v5/params/
manifest_create_libpod.rs

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