pub enum ConfigFilter {
Id(String),
LabelKey(String),
Label(String, String),
Name(String),
Names(String),
}
Available on crate feature
swarm
only.Variants§
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.
Names(String)
Trait Implementations§
Source§impl Filter for ConfigFilter
impl Filter for ConfigFilter
fn query_item(&self) -> FilterItem
Auto Trait Implementations§
impl Freeze for ConfigFilter
impl RefUnwindSafe for ConfigFilter
impl Send for ConfigFilter
impl Sync for ConfigFilter
impl Unpin for ConfigFilter
impl UnwindSafe for ConfigFilter
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