pub enum VolumeListFilter {
Driver(String),
LabelKey(String),
LabelKeyVal(String, String),
NoLabelKey(String),
NoLabelKeyVal(String, String),
Name(String),
Opt(String),
Until(String),
}
Expand description
Used to filter listed volumes by one of the variants.
Variants§
Driver(String)
Match a volume based on a driver.
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.
Name(String)
Volume with name
Opt(String)
Volumes with storage driver opts
Until(String)
The
Trait Implementations§
Source§impl Debug for VolumeListFilter
impl Debug for VolumeListFilter
Source§impl Filter for VolumeListFilter
impl Filter for VolumeListFilter
fn query_item(&self) -> FilterItem
Auto Trait Implementations§
impl Freeze for VolumeListFilter
impl RefUnwindSafe for VolumeListFilter
impl Send for VolumeListFilter
impl Sync for VolumeListFilter
impl Unpin for VolumeListFilter
impl UnwindSafe for VolumeListFilter
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