pub struct ImageDeleteAllLibpod<'a> {
    pub images: Option<Vec<&'a str>>,
    pub all: Option<bool>,
    pub force: Option<bool>,
    pub ignore: Option<bool>,
    pub lookup_manifest: Option<bool>,
}Available on crate feature 
v5 only.Fields§
§images: Option<Vec<&'a str>>Images IDs or names to remove.
all: Option<bool>Remove all images.
force: Option<bool>Force image removal (including containers using the images).
ignore: Option<bool>Ignore if a specified image does not exist and do not throw an error.
lookup_manifest: Option<bool>Resolves to manifest list instead of image.
Trait Implementations§
Source§impl<'a> Debug for ImageDeleteAllLibpod<'a>
 
impl<'a> Debug for ImageDeleteAllLibpod<'a>
Source§impl<'a> Default for ImageDeleteAllLibpod<'a>
 
impl<'a> Default for ImageDeleteAllLibpod<'a>
Source§fn default() -> ImageDeleteAllLibpod<'a>
 
fn default() -> ImageDeleteAllLibpod<'a>
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl<'a> Freeze for ImageDeleteAllLibpod<'a>
impl<'a> RefUnwindSafe for ImageDeleteAllLibpod<'a>
impl<'a> Send for ImageDeleteAllLibpod<'a>
impl<'a> Sync for ImageDeleteAllLibpod<'a>
impl<'a> Unpin for ImageDeleteAllLibpod<'a>
impl<'a> UnwindSafe for ImageDeleteAllLibpod<'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