Enum podman_api::opts::VolumeListFilter
source · 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