Enum podman_api::opts::PodListFilter [−][src]
pub enum PodListFilter {
Id(Id),
LabelKey(String),
LabelKeyVal(String, String),
Name(String),
Until(String),
Network(String),
Status(PodStatus),
ContainerName(String),
ContainerId(Id),
ContainerStatus(ContainerStatus),
ContainerNumber(usize),
}
Expand description
Used to filter listed pods by one of the variants.
Variants
Id(Id)
Tuple Fields
0: Id
A pods’s ID
LabelKey(String)
Tuple Fields
0: String
Pod key label.
LabelKeyVal(String, String)
Pod key-value label.
Name(String)
Tuple Fields
0: String
A pods’s name
Until(String)
Tuple Fields
0: String
List pods created before this timestamp. The
Network(String)
Tuple Fields
0: String
Name or full ID of network.
Status(PodStatus)
Tuple Fields
0: PodStatus
ContainerName(String)
Tuple Fields
0: String
Container name within the pod.
ContainerId(Id)
Tuple Fields
0: Id
Container name within the pod.
ContainerStatus(ContainerStatus)
Tuple Fields
Container status within the pod.
ContainerNumber(usize)
Tuple Fields
0: usize
Number of containers within the pod.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for PodListFilter
impl Send for PodListFilter
impl Sync for PodListFilter
impl Unpin for PodListFilter
impl UnwindSafe for PodListFilter
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more