pub enum PodListFilter {
}
Expand description
Used to filter listed pods by one of the variants.
Variants§
Id(Id)
A pods’s ID
LabelKey(String)
Pods with key label.
LabelKeyVal(String, String)
Pods with key=value label.
NoLabelKey(String)
Pods without key label.
NoLabelKeyVal(String, String)
Pods without key=value label.
Name(String)
A pods’s name
Until(String)
List pods created before this timestamp. The
Network(String)
Name or full ID of network.
Status(PodStatus)
ContainerName(String)
Container name within the pod.
ContainerId(Id)
Container name within the pod.
ContainerStatus(ContainerStatus)
Container status within the pod.
ContainerNumber(usize)
Number of containers within the pod.
Trait Implementations§
Source§impl Debug for PodListFilter
impl Debug for PodListFilter
Source§impl Filter for PodListFilter
impl Filter for PodListFilter
fn query_item(&self) -> FilterItem
Auto Trait Implementations§
impl Freeze for PodListFilter
impl RefUnwindSafe for PodListFilter
impl Send for PodListFilter
impl Sync for PodListFilter
impl Unpin for PodListFilter
impl UnwindSafe for PodListFilter
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