pub struct ImageListLibpod<'a> {
pub all: Option<bool>,
pub filters: Option<&'a str>,
}
Available on crate feature
v5
only.Fields§
§all: Option<bool>
Show all images. Only images from a final layer (no children) are shown by default.
filters: Option<&'a str>
A JSON encoded value of the filters (a map[string][]string
) to process on the images list. Available filters:
before
=(<image-name>[:<tag>]
,<image id>
or<image@digest>
)dangling=true
label=key
orlabel="key=value"
of an image labelreference
=(<image-name>[:<tag>]
)id
=(<image-id>
)since
=(<image-name>[:<tag>]
,<image id>
or<image@digest>
)
Trait Implementations§
Source§impl<'a> Debug for ImageListLibpod<'a>
impl<'a> Debug for ImageListLibpod<'a>
Source§impl<'a> Default for ImageListLibpod<'a>
impl<'a> Default for ImageListLibpod<'a>
Source§fn default() -> ImageListLibpod<'a>
fn default() -> ImageListLibpod<'a>
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl<'a> Freeze for ImageListLibpod<'a>
impl<'a> RefUnwindSafe for ImageListLibpod<'a>
impl<'a> Send for ImageListLibpod<'a>
impl<'a> Sync for ImageListLibpod<'a>
impl<'a> Unpin for ImageListLibpod<'a>
impl<'a> UnwindSafe for ImageListLibpod<'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