pub struct SecretList<'a> {
    pub filters: Option<&'a str>,
}Available on crate feature 
v4 only.Fields§
§filters: Option<&'a str>JSON encoded value of the filters (a map[string][]string) to process on the secrets list. Currently available filters:
- name=[name]Matches secrets name (accepts regex).
- id=[id]Matches for full or partial ID.
Trait Implementations§
Source§impl<'a> Debug for SecretList<'a>
 
impl<'a> Debug for SecretList<'a>
Source§impl<'a> Default for SecretList<'a>
 
impl<'a> Default for SecretList<'a>
Source§fn default() -> SecretList<'a>
 
fn default() -> SecretList<'a>
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl<'a> Freeze for SecretList<'a>
impl<'a> RefUnwindSafe for SecretList<'a>
impl<'a> Send for SecretList<'a>
impl<'a> Sync for SecretList<'a>
impl<'a> Unpin for SecretList<'a>
impl<'a> UnwindSafe for SecretList<'a>
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