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.
Id(Id)
Since(ImageOpt)
Trait Implementations§
Source§impl Debug for ImageListFilter
impl Debug for ImageListFilter
Source§impl Filter for ImageListFilter
impl Filter for ImageListFilter
fn query_item(&self) -> FilterItem
Auto Trait Implementations§
impl Freeze for ImageListFilter
impl RefUnwindSafe for ImageListFilter
impl Send for ImageListFilter
impl Sync for ImageListFilter
impl Unpin for ImageListFilter
impl UnwindSafe for ImageListFilter
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