Enum podman_api::opts::ImageListFilter
source · pub enum ImageListFilter {
Before(ImageOpt),
Dangling(bool),
LabelKey(String),
LabelKeyVal(String, String),
NoLabelKey(String),
NoLabelKeyVal(String, String),
Reference(Id, Option<String>),
Id(Id),
Since(ImageOpt),
}Expand description
Used to filter listed images by one of the variants.
Variants§
Before(ImageOpt)
Dangling(bool)
LabelKey(String)
Image with key label.
LabelKeyVal(String, String)
Image with key-value label.
NoLabelKey(String)
Image without key label.
NoLabelKeyVal(String, String)
Image without key=value label.
Reference(Id, Option<String>)
Image name with optional tag.