pub struct ImageList<'a> {
pub all: Option<bool>,
pub filters: Option<&'a str>,
pub digests: Option<bool>,
}Available on crate feature
v4 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=truelabel=keyorlabel="key=value"of an image labelreference=(<image-name>[:<tag>])since=(<image-name>[:<tag>],<image id>or<image@digest>)
digests: Option<bool>Not supported
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for ImageList<'a>
impl<'a> RefUnwindSafe for ImageList<'a>
impl<'a> Send for ImageList<'a>
impl<'a> Sync for ImageList<'a>
impl<'a> Unpin for ImageList<'a>
impl<'a> UnwindSafe for ImageList<'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