pub enum VolumePruneFilter {
LabelKey(String),
LabelKeyVal(String, String),
NoLabelKey(String),
NoLabelKeyVal(String, String),
Until(String),
}
Expand description
Used to filter pruned volumes.
Variants§
LabelKey(String)
Volumes with a label.
LabelKeyVal(String, String)
Volumes with a key=value label.
NoLabelKey(String)
Volumes without a label.
NoLabelKeyVal(String, String)
Volumes without a key=value label.
Until(String)
The
Trait Implementations§
Source§impl Debug for VolumePruneFilter
impl Debug for VolumePruneFilter
Source§impl Filter for VolumePruneFilter
impl Filter for VolumePruneFilter
fn query_item(&self) -> FilterItem
Auto Trait Implementations§
impl Freeze for VolumePruneFilter
impl RefUnwindSafe for VolumePruneFilter
impl Send for VolumePruneFilter
impl Sync for VolumePruneFilter
impl Unpin for VolumePruneFilter
impl UnwindSafe for VolumePruneFilter
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