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