pub enum TaskFilter {
DesiredState(TaskStateFilter),
Id(String),
LabelKey(String),
Label(String, String),
Name(String),
Node(String),
Service(String),
}
Available on crate feature
swarm
only.Variants§
DesiredState(TaskStateFilter)
The state that the task should be in.
Id(String)
The ID of the config.
LabelKey(String)
Label in the form of label=key
Label(String, String)
Label in the form of label=key=val
Name(String)
The name of the config.
Node(String)
Name of the node.
Service(String)
Name of the service.
Trait Implementations§
Source§impl Filter for TaskFilter
impl Filter for TaskFilter
fn query_item(&self) -> FilterItem
Auto Trait Implementations§
impl Freeze for TaskFilter
impl RefUnwindSafe for TaskFilter
impl Send for TaskFilter
impl Sync for TaskFilter
impl Unpin for TaskFilter
impl UnwindSafe for TaskFilter
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