pub struct ManifestCreateLibpod<'a> {
pub images: &'a str,
pub all: Option<bool>,
pub amend: Option<bool>,
}
Available on crate feature
v5
only.Fields§
§images: &'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
all: Option<bool>
add all contents if given list
amend: Option<bool>
modify an existing list if one with the desired name already exists
Trait Implementations§
Source§impl<'a> Debug for ManifestCreateLibpod<'a>
impl<'a> Debug for ManifestCreateLibpod<'a>
Source§impl<'a> Default for ManifestCreateLibpod<'a>
impl<'a> Default for ManifestCreateLibpod<'a>
Source§fn default() -> ManifestCreateLibpod<'a>
fn default() -> ManifestCreateLibpod<'a>
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl<'a> Freeze for ManifestCreateLibpod<'a>
impl<'a> RefUnwindSafe for ManifestCreateLibpod<'a>
impl<'a> Send for ManifestCreateLibpod<'a>
impl<'a> Sync for ManifestCreateLibpod<'a>
impl<'a> Unpin for ManifestCreateLibpod<'a>
impl<'a> UnwindSafe for ManifestCreateLibpod<'a>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more