pub struct DynamicSecretList {
pub json: Option<bool>,
pub token: Option<String>,
pub uid_token: Option<String>,
}Expand description
DynamicSecretList : dynamicSecretList is a command that returns a list of dynamic secrets
Fields§
§json: Option<bool>Set output format to JSON
token: Option<String>Authentication token (see /auth and /configure)
uid_token: Option<String>The universal identity token, Required only for universal_identity authentication
Implementations§
Source§impl DynamicSecretList
impl DynamicSecretList
Sourcepub fn new() -> DynamicSecretList
pub fn new() -> DynamicSecretList
dynamicSecretList is a command that returns a list of dynamic secrets
Trait Implementations§
Source§impl Clone for DynamicSecretList
impl Clone for DynamicSecretList
Source§fn clone(&self) -> DynamicSecretList
fn clone(&self) -> DynamicSecretList
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for DynamicSecretList
impl Debug for DynamicSecretList
Source§impl Default for DynamicSecretList
impl Default for DynamicSecretList
Source§fn default() -> DynamicSecretList
fn default() -> DynamicSecretList
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DynamicSecretList
impl<'de> Deserialize<'de> for DynamicSecretList
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for DynamicSecretList
impl PartialEq for DynamicSecretList
Source§fn eq(&self, other: &DynamicSecretList) -> bool
fn eq(&self, other: &DynamicSecretList) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for DynamicSecretList
impl Serialize for DynamicSecretList
impl StructuralPartialEq for DynamicSecretList
Auto Trait Implementations§
impl Freeze for DynamicSecretList
impl RefUnwindSafe for DynamicSecretList
impl Send for DynamicSecretList
impl Sync for DynamicSecretList
impl Unpin for DynamicSecretList
impl UnsafeUnpin for DynamicSecretList
impl UnwindSafe for DynamicSecretList
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