pub enum ContainerPruneFilter {
Until(String),
LabelKey(String),
LabelKeyVal(String, String),
NoLabelKey(String),
NoLabelKeyVal(String, String),
}
Expand description
Used to filter removed images.
Variants§
Until(String)
Prune containers created before this timestamp. The
LabelKey(String)
Container with key label.
LabelKeyVal(String, String)
Container with key-value label.
NoLabelKey(String)
Container without key label.
NoLabelKeyVal(String, String)
Container without key-value label.
Trait Implementations§
Source§impl Debug for ContainerPruneFilter
impl Debug for ContainerPruneFilter
Source§impl Filter for ContainerPruneFilter
impl Filter for ContainerPruneFilter
fn query_item(&self) -> FilterItem
Auto Trait Implementations§
impl Freeze for ContainerPruneFilter
impl RefUnwindSafe for ContainerPruneFilter
impl Send for ContainerPruneFilter
impl Sync for ContainerPruneFilter
impl Unpin for ContainerPruneFilter
impl UnwindSafe for ContainerPruneFilter
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